/* General Styles */
body {
    background: linear-gradient(to bottom, #f8f9fa, #e3f2fd);
}

/* Header */
.navbar {
    background: linear-gradient(to right, #007bff, #0056b3);
    padding: 15px 0;
}

.navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .navbar-brand i {
    font-size: 1.8rem;
}

/* Card Styles */
.card {
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Button Animations */
.animate-hover {
    transition: all 0.3s ease;
}

.animate-hover:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(to right, #0056b3, #007bff);
    font-size: 14px;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer a {
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffc107;
}
#trace-id-result button {
    cursor: pointer;
    transition: all 0.3s ease;
}

#trace-id-result button:hover {
    transform: scale(1.1);
}
.form-label {
        font-size: 1rem;
        color: #495057;
    }

    .input-group-text {
        background-color: #007bff;
        color: #fff;
        border: none;
        cursor: pointer;
    }

    .input-group-text:hover {
        background-color: #0056b3;
    }

    #cnic-preview img, #payment-proof-preview img, #bank-statement-preview img {
        max-width: 100%;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-top: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    #cnic-preview a, #payment-proof-preview a, #bank-statement-preview a {
        display: inline-block;
        margin-top: 10px;
        color: #007bff;
        text-decoration: none;
    }

    #cnic-preview a:hover, #payment-proof-preview a:hover, #bank-statement-preview a:hover {
        text-decoration: underline;
    }
    /* Status Small Card */
/* General styling for status boxes */
.status-box {
    text-align: center;
    padding: 15px;
    border: 2px solid #d3d3d3;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

/* Icons styling */
.status-box .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

/* Status-specific styling */
.status-box.created {
    background-color: #e7f3ff;
    color: #007bff;
    border-color: #007bff;
}

.status-box.in-progress {
    background-color: #fff3cd;
    color: #ffc107;
    border-color: #ffc107;
}

.status-box.resolved {
    background-color: #d4edda;
    color: #28a745;
    border-color: #28a745;
}

/* Highlight effect */
.status-box.active {
    transform: scale(1.1);
    font-weight: bold;
}

/* Responsive layout */
@media (max-width: 768px) {
    .status-box {
        font-size: 12px;
        padding: 10px;
    }
}
