body {
    background-color: #121212; /* Dark background */
    color: #E0E0E0; /* Light text color */
    font-family: Arial, sans-serif;
}

.card {
    background-color: #1E1E1E; /* Darker background for cards */
    color: #E0E0E0; /* Light text color */
    border: 1px solid #333; /* Border to distinguish cards */
    border-radius: 25px; /* Increase the border radius */
}

.table-borderless tbody tr td {
    background-color: #1E1E1E; /* Darker background for tables */
    color: #E0E0E0; /* Light text color for tables */
}

.badge {
    background-color: #333; /* Dark badge background */
    color: #E0E0E0; /* Light badge text color */
}

.alert-warning {
    background-color: #FFCC00;
    color: #000;
}

.alert-danger {
    background-color: #FF4444;
    color: #fff;
}

.alert-info {
    background-color: #1E88E5;
    color: #fff;
}

.card-header {
    background-color: #333;
    color: #E0E0E0;
}
