.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    border-top: 3px solid #198754;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner p {
    font-size: 15px;
    margin-bottom: 0;
}

.cookie-banner strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.cookie-banner a {
    color: #198754;
    font-weight: bold;
}

.cookie-banner .btn {
    font-weight: bold;
    padding: 10px 30px;
}

.cookie-banner .btn-light {
    background-color: #198754;
    border-color: #198754;
    color: white;
}

.cookie-banner .btn-light:hover {
    background-color: #146c43;
    border-color: #146c43;
}

.cookie-banner .btn-outline-light {
    color: white;
    border-color: white;
}

.cookie-banner .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (max-width: 768px) {
    .cookie-banner .btn {
        width: 48%;
        margin-bottom: 10px;
    }
    
    .cookie-banner {
        padding: 15px 0;
    }
}
#pwa-install-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border: none;
}

#pwa-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
/* Custom styles */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.display-4 {
    font-weight: 700;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    transition: all 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}
.navbar-nav .nav-link {
    color: white;
    text-decoration: none !important;
    transition: transform 0.2s ease;
    display: inline-block; /* needed for transform to work properly */
}

.navbar-nav .nav-link:hover {
    color: white;
    transform: scale(1.15);
    text-decoration: none !important;
}
