/* style for Evaluation page */
.alert {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
}
.alert-success {
    background: #d1e7dd;
    color: #0f5132;
}
.alert-danger {
    background: #f8d7da;
    color: #842029;
}
.payment-message {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.payment-message.show {
    opacity: 1;
}

/* Styles for rules page */
.accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
}
.accordion-header {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    position: relative;
}
.accordion-header:hover {
    background: #fff8e1;
}
.accordion-header::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 18px;
    color: #b88a00;
    transition: transform 0.3s;
}
.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}
.accordion-content {
    display: none;
    padding: 20px;
    background: #fffdf8;
    line-height: 1.8;
}
