/* Container for the entire page */
.container {
    max-width: 1600px;
    padding: 1px;
}

/* Flex container for cards */
.flex-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Section Card 1 and 2 */
.card-1, .card-2 {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 48%; /* Take half of the container width */
}

/* Section Card 3 */
.card-3 {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Section Title */
.card-1 h2, .card-2 h2, .card-3 h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

/* Buttons */
button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Unordered List */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    margin: 5px 0;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #007bff;
    color: white;
    text-transform: uppercase;
}

tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

/* Chart Container */
.chart-container {
    width: 95%;
    height: 350px;
    margin: 0.5 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Status Classes */
.status-accepted {
    color: green;
    font-weight: bold;
}

.status-pending {
    color: orange;
    font-weight: bold;
}

.status-rejected {
    color: red;
    font-weight: bold;
}
