body {
    font-family: 'Arial', sans-serif;
    background-color: #ebdae9; /* Light-medium gray background */
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card {
    border: none;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #8a6588;
    border-color: #8a6588;
}

.btn-secondary:hover {
    background-color: #8a6588;
    border-color: #8a6588;
}

.accordion-button {
    color: white;
    background-color: #a1779f;
    text-align: center;
    white-space: nowrap; /* Tek satıra zorla */
    overflow: hidden; /* Taşanı gizle */
    text-overflow: ellipsis; /* ... ile göster */
    font-size: clamp(24px, 1.5vw, 48px); /* Ekrana göre küçülüp büyüsün */
    height: 48px; /* Sabit yükseklik (örnek) */
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion .accordion-header .accordion-button {
    text-align: center !important;
    justify-content: center !important;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: #8a6588; /* Slightly lighter gray when open */
}

.accordion-button:focus {
    box-shadow: none;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse; /* Yıldızları sağdan sola sırala */
    justify-content: flex-end;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    padding: 0 5px;
}

.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f5c518;
}

/* Center footer text */
.footer .container {
    text-align: center;
}

/* Style for footer link */
.footer .survey-link {
    margin-bottom: 10px;
}

.footer .survey-link a {
    color: #343a40; /* Dark gray font color */
    text-decoration: none;
    font-weight: bold;
}

.footer .survey-link a:hover {
    text-decoration: underline;
    color: #495057; /* Slightly lighter gray on hover */
}

/* Accordion body background */
.accordion-body {
    background-color: #a383a2; /* Slightly darker gray for accordion content */
}

/* Optional: Gray background for product cards */
.accordion-body .card {
    background-color: #c4a1c3; /* Default: white for contrast */
    /* Alternative: uncomment for light gray cards */
    /* background-color: #f8f9fa; */
}
