/* Identity verifier main container */
.icv-verification-box {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, inherit;
    color: #1e293b;
}

.icv-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, inherit;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
    text-align: center;
}

.icv-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Form Styles */
.icv-search-form {
    margin-bottom: 2rem;
}

.icv-input-group {
    display: flex;
    gap: 0.5rem;
}

.icv-input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.icv-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.icv-btn {
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.icv-btn:hover {
    background-color: #1e293b;
}

/* Results Custom Cards */
.icv-results-container {
    animation: fadeIn 0.3s ease-out;
}

.icv-card {
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Active Membership Card Style */
.icv-active {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
}

.icv-badge-verified {
    display: inline-block;
    background-color: #10b981;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.icv-card-body {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 480px) {
    .icv-card-body {
        flex-direction: column;
        text-align: center;
    }
    .icv-input-group {
        flex-direction: column;
    }
}

.icv-avatar-wrapper {
    flex-shrink: 0;
}

.icv-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.icv-avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #cbd5e1;
    color: #475569;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
}

.icv-info {
    flex-grow: 1;
}

.icv-m-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}

.icv-m-detail {
    font-size: 0.85rem;
    color: #334155;
    margin: 0.25rem 0;
}

/* Inactive Membership Card Style */
.icv-inactive {
    background: #fef2f2;
    border: 1.5px solid #fecaca;
    color: #1e293b;
}

.icv-error-msg-bold {
    font-weight: 700;
    color: #dc2626;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.icv-error-note {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #475569;
    margin-bottom: 0.75rem;
}

.icv-error-action {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1e293b;
    border-top: 1px solid #fca5a5;
    padding-top: 0.75rem;
    margin: 0;
}

/* Not Matched Card Style */
.icv-not-matched {
    background: #fffbeb;
    border: 1.5px solid #fde68a;
}

.icv-not-matched .icv-error-msg-bold {
    color: #d97706;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
