/* ====================================
   VENDOR VERIFICATION SECTION STYLES
   ==================================== */
.verification-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .verification-container {
        grid-template-columns: 2fr 1fr;
    }
}

.verification-status-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.verification-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.verification-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(184, 134, 11, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFD700;
}

.verification-title h4 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.verification-title p {
    margin: 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.verification-progress {
    margin-bottom: 2rem;
    position: relative;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-info span {
    color: #ffffff;
    font-weight: 600;
}

.progress-info span:last-child {
    color: #FFD700;
    font-weight: 700;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #B8860B);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.progress-text {
    position: absolute;
    right: 0;
    top: -25px;
    color: #FFD700;
    font-weight: 700;
    font-size: 0.9rem;
}

.verification-requirements {
    margin-bottom: 2rem;
}

.verification-requirements h5 {
    color: #ffffff;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.requirement-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.requirement-info i {
    font-size: 1.2rem;
    color: #FFD700;
    width: 30px;
    text-align: center;
}

.requirement-info div {
    flex: 1;
}

.requirement-info strong {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.requirement-info small {
    color: #cccccc;
    font-size: 0.8rem;
}

.requirement-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.requirement-status span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.requirement-status i {
    font-size: 1.5rem;
    color: #e74c3c;
}

.requirement-status i.fa-check-circle {
    color: #27ae60;
}

.verification-benefits {
    margin-bottom: 2rem;
}

.verification-benefits h5 {
    color: #ffffff;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.verification-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verification-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.verification-benefits li i {
    color: #27ae60;
    font-size: 0.9rem;
}

.verification-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.verification-actions .btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.verification-note {
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.85rem;
}

.verification-note i {
    color: #FFD700;
    margin-right: 0.5rem;
}

.verification-history {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.verification-history h5 {
    color: #ffffff;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

#verificationHistory {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.history-item.pending {
    border-left: 3px solid #f39c12;
}

.history-item.completed {
    border-left: 3px solid #27ae60;
}

.history-item.rejected {
    border-left: 3px solid #e74c3c;
}

.history-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.history-info strong {
    color: #ffffff;
    font-size: 0.9rem;
}

.history-info span {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.95rem;
}

.history-info small {
    color: #cccccc;
    font-size: 0.75rem;
}

.history-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.history-item.pending .history-status {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid #f39c12;
}

.history-item.completed .history-status {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    border: 1px solid #27ae60;
}

.history-item.rejected .history-status {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.empty-history {
    text-align: center;
    padding: 2rem 1rem;
    color: #cccccc;
}

.empty-history i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-history p {
    margin: 0;
    font-size: 0.9rem;
}

.verified-badge,
.pending-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.verified-badge {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    border: 1px solid #27ae60;
}

.pending-badge {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid #f39c12;
}
