.status-container, .display-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px; 
    }

    .status-container {
        cursor: pointer; 
    }
    .status-card:hover {
        background: #e9ecef; 
    }


.status-card,.display-card {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

.status-icon {
    font-size: 30px;
    margin-right: 10px;
}

.status-number {
    font-size: 24px;
    font-weight: bold;
}

.status-text {
    font-size: 13px;
    color: #555;
}
.reminder-alert {
    background-color: #fff0f0;
    border: 1px solid #dc3545;
    box-shadow: 0 0 0 1px rgba(220, 53, 69, 0.5);
    border-radius: 8px;
}
.reminder-alert .status-icon {
    color: #dc3545 !important;
}
.reminder-alert .status-number {
    color: #dc3545;
    font-weight: bold;
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table th, .table td {
    white-space: nowrap; /* 🔒 Prevent wrapping */
}

