/* Enhanced Visa Status Styles */
.visa-tracker-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

.search-form-card {
    background: #fff;
    /* padding: 25px; */
    margin-bottom: 30px;
}

.search-form-title {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.result-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e1e5eb;
    animation: fadeIn 0.5s ease-out;
}


.result-title {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.detail-item {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 15px;
}

.detail-label {
    color: #2c3e50;
    font-weight: 600;
    display: inline-block;
    min-width: 150px;
}


.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-approved {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-pending {
    background: #fff8e1;
    color: #ff8f00;
}

.status-rejected {
    background: #ffebee;
    color: #c62828;
}

.download-btn {
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.download-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-button {
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-button:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-label {
        display: block;
        margin-bottom: 5px;
    }
}

.status-card {
    background: #f4f8ff;
    border: 1px solid #dfe7f3;
    border-radius: 8px;
    padding: 18px 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
}

.status-card small {
    display: block;
    color: #8a95a8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 5px;
}

.status-card h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1d3d8f;
}

.status-icon i {
    font-size: 28px;
}

.status-icon .fa-clock {
    color: #253956;
}

.status-icon .fa-check-circle {
    color: #253956;
}

.status-icon .fa-times-circle {
    color: #253956;
}

.demo-box {
    background: #f8f8fc;
    border: 1px solid #e5e5ef;
    border-radius: 4px;

    padding: 14px 15px;

    display: flex;
    gap: 10px;

    margin-top: 25px;

    font-size: 13px;
    color: #666;
}

.demo-box i {
    color: #516d8f;
    margin-top: 2px;
    font-size: 14px;
}

.demo-box strong {
    color: #2d3e50;
}

.demo-box b {
    font-weight: 600;
    color: #444;
}

