.commission-verify {
    max-width: 1400px;
    margin: 30px auto;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.commission-verify h2 {
    color: #2d3748;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.commission-verify table,
.commission-verified-list table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 25px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.commission-verify th,
.commission-verified-list th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.commission-verify th:first-child,
.commission-verified-list th:first-child {
    border-top-left-radius: 12px;
}

.commission-verify th:last-child,
.commission-verified-list th:last-child {
    border-top-right-radius: 12px;
}

.commission-verify td,
.commission-verified-list td {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
    font-size: 15px;
    color: #4a5568;
}

.commission-verify tr:last-child td {
    border-bottom: none;
}

.commission-verify tr {
    transition: all 0.3s ease;
}

.commission-verify tr:hover {
    background: linear-gradient(90deg, #f7fafc 0%, #edf2f7 100%);
    transform: scale(1.01);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.1);
}

.commission-verify tr:hover td {
    color: #2d3748;
}

.otp-verification {
    margin-top: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.otp-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.otp-input {
    width: 140px;
    padding: 14px 18px;
    border: 2px solid #cbd5e0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 5px;
    transition: all 0.3s ease;
    background: #fff;
    color: #2d3748;
    font-family: "Courier New", monospace;
}

.otp-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    transform: scale(1.05);
}

.otp-input::placeholder {
    letter-spacing: 2px;
    color: #a0aec0;
}

.otp-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.otp-timer {
    font-size: 14px;
    font-weight: 700;
    color: #667eea;
    padding: 8px 16px;
    background: linear-gradient(135deg, #e7ecff 0%, #d6e4ff 100%);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #cbd5e0;
    box-shadow: 0 2px 5px rgba(102, 126, 234, 0.2);
}

.otp-timer::before {
    content: "⏱";
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.otp-timer.expired {
    color: #dc3545;
    background: linear-gradient(135deg, #ffe7e7 0%, #ffd6d6 100%);
    border-color: #feb2b2;
}

.otp-message {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.otp-message.success {
    color: #28a745;
    font-weight: 700;
}

.otp-message.success::before {
    content: "✓";
    background: #28a745;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.otp-message.error {
    color: #dc3545;
    font-weight: 700;
}

.otp-message.error::before {
    content: "✕";
    background: #dc3545;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mark-as-paid {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.mark-as-paid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mark-as-paid:hover::before {
    width: 300px;
    height: 300px;
}

.mark-as-paid:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.mark-as-paid:active {
    transform: translateY(-1px);
}

.mark-as-paid:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.verify-otp {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.verify-otp::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.verify-otp:hover::before {
    width: 300px;
    height: 300px;
}

.verify-otp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
}

.verify-otp:active {
    transform: translateY(-1px);
}

.verify-otp:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.commission-verified-list {
    max-width: 1400px;
    margin: 30px auto;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.commission-verified-list h2 {
    color: #2d3748;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 15px;
    border-bottom: 3px solid #28a745;
}

@media (max-width: 768px) {
    .commission-verify,
    .commission-verified-list {
        padding: 15px;
        margin: 15px;
    }
    
    .commission-verify h2,
    .commission-verified-list h2 {
        font-size: 24px;
    }
    
    .commission-verify table,
    .commission-verified-list table {
        font-size: 12px;
    }
    
    .commission-verify th,
    .commission-verified-list th,
    .commission-verify td,
    .commission-verified-list td {
        padding: 10px;
    }
    
    .otp-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .otp-input {
        width: 100%;
    }
    
    .verify-otp,
    .mark-as-paid {
        width: 100%;
    }
}