/* Verify Agent Page Styles */

/* Root Variables for consistency and premium feel */
:root {
    --primary-color: #0d2436;
    /* Deep Navy */
    --accent-color: #1a73e8;
    /* Trusted Blue */
    --success-color: #34a853;
    --warning-color: #f9ab00;
    --error-color: #ea4335;
    --text-dark: #202124;
    --text-muted: #5f6368;
    --bg-light: #f8f9fa;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

body {
    background-color: var(--bg-light);
}

.verify_hero {
    background: linear-gradient(135deg, var(--primary-color), #163c5a);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: -40px;
    /* Overlap effect */
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.verify_hero h1 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 3rem;
    color: white;
}

.verify_hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Search Container with Glassmorphism feel */
.search_container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.search_input_group {
    background: white;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search_input_group:hover,
.search_input_group:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.search_input {
    border: none;
    flex-grow: 1;
    padding: 15px 25px;
    font-size: 1.1rem;
    border-radius: 50px;
    outline: none;
}

.search_btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search_btn:hover {
    background-color: #135fc1;
}

/* Results Section */
.results_section {
    padding: 80px 0;
    min-height: 50vh;
}

.agent_card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--card-shadow);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.agent_card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-5px);
}

.agent_header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.agent_info h2 {
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    font-size: 2rem;
}

.agent_position {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 5px;
}

.agent_status {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status_active {
    background-color: rgba(52, 168, 83, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(52, 168, 83, 0.2);
}

.status_inactive {
    background-color: rgba(234, 67, 53, 0.1);
    color: var(--error-color);
    border: 1px solid rgba(234, 67, 53, 0.2);
}

.agent_details {
    display: grid;
    gap: 15px;
}

.detail_row {
    display: flex;
    flex-direction: column;
}

.detail_label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}

.detail_value {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.agent_summary {
    background-color: #f8fbff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    font-style: italic;
    color: #4a5568;
    border-left: 4px solid var(--accent-color);
}

.verification_badge {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #e6f4ea;
    border-radius: 12px;
    color: #137333;
    font-weight: 500;
}

.verification_badge.inactive-badge {
    background: #fce8e6;
    color: #c5221f;
}

.verification_badge i {
    font-size: 1.5rem;
}

/* Legal Notice */
.legal_notice {
    font-size: 0.8rem;
    color: #9aa0a6;
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0 auto;
    line-height: 1.6;
}

.not_found_card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    max-width: 600px;
    margin: 0 auto;
}

.not_found_icon {
    font-size: 4rem;
    color: var(--warning-color);
    margin-bottom: 20px;
}

.help_link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
}

.help_link a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .detail_row {
        flex-direction: row;
        align-items: center;
    }

    .detail_label {
        width: 150px;
        margin-bottom: 0;
    }
}