/*
Custom  Accordion Styles
*/
.acc_cust_card {
    border: 1px solid #dee2e6;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.acc_cust_header {
    /* padding: 15px;
    transition: opacity 0.3s ease; */
    padding: 15px;
    transition: opacity 0.3s ease;
    background: linear-gradient(145deg, #41416b 0%, #32325d 100%);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.acc_cust_header:hover {
    opacity: 0.9; /* Slight fade effect on hover */
}
.acc_cust_link {
    color: #ffffff; /* White text for contrast */
    text-decoration: none;
    font-weight: 500;
    width: 100%;
}

.acc_cust_link:hover {
    color: #f8f9fa; /* Light gray on hover */
}
.acc_cust_link:not(.collapsed) {
    font-weight: 700; /* Bolder text when expanded */
}
.acc_cust_link a,
.acc_cust_link,
.acc_cust_link:visited,
.acc_cust_link:active,
.acc_cust_link:focus,
.acc_cust_link:hover {
    color: #ffffff !important; /* Or any desired color */
    text-decoration: none;
}
.acc_cust_title {
    flex-grow: 1;
}

.acc_cust_arrow::before {
    content: "▾"; /* Always down arrow */
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.acc_cust_link:not(.collapsed) .acc_cust_arrow::before {
    transform: rotate(180deg); /* Rotates arrow upward */
}

.acc_cust_body {
    padding: 20px;
    /* background-color: #ffffff; */
    border-top: 1px solid #dee2e6;
}
