.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #343a40, #495057);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content h6 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    color: #e9ecef;
    line-height: 1.5;
}

.cookie-content a {
    color: #ffc107;
    transition: color 0.2s ease;
}

.cookie-content a:hover {
    color: #ffcd39;
}

.cookie-buttons .btn-outline-light {
    border-color: #dee2e6;
    color: #dee2e6;
    transition: all 0.2s ease;
}

.cookie-buttons .btn-outline-light:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.cookie-buttons .btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    transition: all 0.2s ease;
}

.cookie-buttons .btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(400px);
    transition: transform 0.3s ease-in-out;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.toast-success { border-left: 4px solid #28a745; }
.toast-notification.toast-info { border-left: 4px solid #17a2b8; }
.toast-notification.toast-warning { border-left: 4px solid #ffc107; }
.toast-notification.toast-danger { border-left: 4px solid #dc3545; }

.toast-content {
    padding: 1rem;
    display: flex;
    align-items: center;
    color: #333;
}

@media (max-width: 768px) {
    .cookie-banner .col-lg-4 { text-align: center !important; margin-top: 1rem; }
    .cookie-buttons { display: flex; justify-content: center; gap: 0.5rem; }
    .cookie-buttons .btn { flex: 1; max-width: 120px; }
    .toast-notification { left: 20px; right: 20px; min-width: auto; transform: translateY(-100px); }
    .toast-notification.show { transform: translateY(0); }
}


