﻿.status-page-header {
    text-align: center;
    padding: 2rem 0 1.5rem;
    margin-bottom: 2rem;
}

.status-page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b5d9a;
    margin-bottom: 0.5rem;
}

.status-page-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
}

.search-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .search-card:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .search-card .card-header {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-bottom: 2px solid #dee2e6;
        font-weight: 600;
        color: #495057;
        padding: 1rem 1.25rem;
        border-radius: 8px 8px 0 0;
    }

    .search-card .card-body {
        padding: 1.75rem 1.5rem;
    }

.result-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card .card-body {
    padding: 2rem 1.75rem;
}

.status-badge-container {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.status-badge-large {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .status-badge-large i {
        font-size: 1.2rem;
    }

.status-details {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.detail-row {
    display: flex;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f1f3f5;
    align-items: flex-start;
}

    .detail-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .detail-row:first-child {
        padding-top: 0;
    }

.detail-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
    min-width: 140px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.detail-value {
    font-weight: 500;
    color: #212529;
    font-size: 0.95rem;
    flex: 1;
    word-break: break-word;
}

    .detail-value code {
        background: #f8f9fa;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.9rem;
        color: #2b5d9a;
        border: 1px solid #e9ecef;
    }

.remarks-alert {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 2px solid #ffc9c9;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

    .remarks-alert .alert-heading {
        color: #dc3545;
        font-weight: 700;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
    }

    .remarks-alert .alert-text {
        color: #721c24;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

.approved-info {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .approved-info i {
        color: #16a34a;
        font-size: 1.5rem;
    }

.approved-info-content {
    flex: 1;
}

.approved-info-label {
    font-weight: 600;
    color: #166534;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
}

.approved-info-value {
    color: #166534;
    font-size: 1rem;
    font-weight: 700;
}

.search-instruction {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #1e40af;
}

    .search-instruction i {
        color: #3b82f6;
        margin-right: 0.5rem;
    }

.no-result-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fff9f5 0%, #ffedd5 100%);
    border: 2px dashed #fb923c;
    border-radius: 8px;
    animation: slideUp 0.4s ease-out;
}

    .no-result-card i {
        font-size: 3rem;
        color: #f97316;
        margin-bottom: 1rem;
    }

    .no-result-card h5 {
        color: #9a3412;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .no-result-card p {
        color: #c2410c;
        margin-bottom: 0;
    }

@media (max-width: 768px) {
    .detail-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .detail-label {
        min-width: unset;
    }

    .status-page-title {
        font-size: 1.5rem;
    }
}
