/* Body styling */
body {
    background-color: #9370DB;
    font-family: Arial, sans-serif;
    color: #212529;
}

/* Ensure the table has a solid background */
table {
    background-color: #ffffff !important; /* Ensure white background */
    border: 1px solid #ddd; /* Optional: Add border */
}

th, td {
    background-color: #ffffff !important; /* Ensure table cells are not transparent */
    border: 1px solid #ddd; /* Optional: Add borders to cells */
}


.container {
    width: 90%;
    margin: 40px auto 0 auto;
    border-radius: 10px; /* Adjust the radius as desired */
    overflow: hidden; /* Optional: hides content that overflows the rounded corners */
    background-color: #ffffff; /* Optional: gives it a visible background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds a subtle shadow */
}



.row {
    background-color: #ffffff; /* Ensure row has a solid background */
}

/* List group item styling */
.list-group .list-group-item {
    background-color: #ffffff !important;
    border: 1px solid #ddd;
}

.list-group .list-group-item:hover {
    background-color: #f1f1f1 !important;
    cursor: pointer;
}

.list-group .list-group-item-action:hover {
    background-color: #f1f1f1 !important;
    cursor: pointer;
}

.list-group .list-group-item {
    display: block;
    width: 100%;
}

/* Accordion and Arrow Styling */
.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

html {
    overflow-y: scroll;
}

.arrow {
    font-size: 18px;
    margin-left: 10px;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(180deg);
}
