.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f1f1f1;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent-content p {
    margin: 0;
    flex: 1;
    padding-right: 20px;
    color: #333;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-consent-accept {
    background: #4CAF50;
    color: white;
}

.cookie-consent-reject {
    background: #f44336;
    color: white;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-content p {
        padding-right: 0;
        margin-bottom: 15px;
    }
}

.cookie-consent-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookie-consent-btn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cookie-consent-btn:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.cookie-consent-accept {
    background: #4CAF50;
    color: white;
}

.cookie-consent-accept:hover {
    background: #3e8e41;
}

.cookie-consent-accept:active {
    background: #2d672f;
    transform: scale(0.98);
}

.cookie-consent-reject {
    background: #f44336;
    color: white;
}

.cookie-consent-reject:hover {
    background: #d32f2f;
}

.cookie-consent-reject:active {
    background: #b71c1c;
    transform: scale(0.98);
}

/* Loading state */
.cookie-consent-btn.loading {
    position: relative;
    color: transparent;
}

.cookie-consent-btn.loading:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.consent-feedback {
    text-align: center;
    padding: 20px;
    color: #4CAF50;
    font-weight: bold;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

