body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 600px;
    padding: 2rem;
    margin: 0 auto;
}

/* Override container width only for dashboard */
.dashboard-container {
    max-width: 95%;
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo img {
    max-width: 180px;
    height: auto;
}

.rating-container {
    margin: 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.star-rating {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-option {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.rating-option:hover {
    background-color: #f8f9fa;
}

.stars {
    color: #ffd700;
    margin-left: auto;
}

.feedback-form {
    margin-top: 2rem;
}

.feedback-textarea {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.btn-submit {
    width: 100%;
    max-width: 300px;
    padding: 1rem;
    background-color: #D6F989;
    color: #333;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: block;
    margin: 0 auto;
}

.btn-submit:hover {
    background-color: #c8eb7d;
}

.dashboard-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 2rem;
}

/* Override Bootstrap container class */
.container {
    max-width: 95% !important;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
}

.stats-card {
    background: linear-gradient(135deg, #D6F989 0%, #c8eb7d 100%);
    color: #333;
    padding: 2rem;
    min-height: 200px;
}

.stats-value {
    font-size: 3rem;
    font-weight: bold;
    margin: 1.5rem 0;
}

.stats-label {
    font-size: 1.2rem;
    opacity: 0.8;
}

.date-filter {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.date-filter select, .date-filter input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 150px;
}

.negative-feedback {
    max-height: 500px;
    overflow-y: auto;
}

.feedback-item {
    transition: all 0.2s ease;
}

.feedback-item:hover {
    transform: translateX(5px);
    border-left: 3px solid #D6F989 !important;
}

/* Page Transitions */
.fade-enter {
    opacity: 0;
}

.fade-enter-active {
    opacity: 1;
    transition: opacity 300ms ease-in;
}

.fade-exit {
    opacity: 1;
}

.fade-exit-active {
    opacity: 0;
    transition: opacity 300ms ease-out;
}

/* Emoji Rating */
.emoji-rating {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.emoji-rating:hover {
    transform: scale(1.1);
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #D6F989;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .logo img {
        max-width: 140px;
    }

    .emoji-rating {
        font-size: 2.5rem;
    }
}

/* Add after the existing animations */

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    animation: confettiFall linear forwards;
    z-index: 1000;
}