/* General Styles */
body {
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1200px;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.card-header {
    font-weight: bold;
}

/* Celebration Form */
.form-check {
    margin-bottom: 10px;
}

/* Dashboard Styles */
.tab-content {
    background-color: white;
}

.list-group-item {
    border-left: none;
    border-right: none;
}

.list-group-item:first-child {
    border-top: none;
}

/* Navbar custom style */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Footer */
footer {
    color: #666;
    border-top: 1px solid #dee2e6;
}

/* Animation for success */
@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.alert-success {
    animation: successPulse 1s;
}