#cookie-banner {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: linear-gradient(135deg, #6e8efb, #a777e3); 
    color: #fff; 
    padding: 15px; 
    display: none; 
    z-index: 1000; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    font-size: 14px;
}

#cookie-banner p {
    margin: 0; 
    flex-grow: 1; 
    text-align: center;
    margin-bottom: 15px;
}

#cookie-banner a {
    color: #fff; 
    text-decoration: underline;
}

#cookie-banner a:hover {
    color: #f0f0f0;
}

#cookie-banner .buttons {
    display: flex; 
    gap: 10px; 
    margin-top: 10px; 
    justify-content: center;
    flex-wrap: wrap;
}

#cookie-banner button {
    padding: 8px 20px; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer;
    font-size: 14px;
    min-width: 80px;
    transition: all 0.3s ease;
}

#cookie-banner .btn-accept {
    background: #fff; 
    color: #6e8efb;
    font-weight: bold;
}

#cookie-banner .btn-accept:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

#cookie-banner .btn-reject {
    background: #e74c3c; 
    color: #fff;
}

#cookie-banner .btn-reject:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

#cookie-banner .btn-close {
    background: transparent; 
    color: #fff; 
    border: 1px solid #fff;
}

#cookie-banner .btn-close:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    #cookie-banner {
        align-items: center; 
        display: flex; 
        justify-content: space-between; 
        padding: 15px 30px;
        flex-direction: row;
    }
    
    #cookie-banner p {
        margin-bottom: 0;
        text-align: left;
        margin-right: 20px;
    }
    
    #cookie-banner .buttons {
        margin-top: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    #cookie-banner {
        text-align: center;
    }
    
    #cookie-banner .buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    #cookie-banner button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    #cookie-banner p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    #cookie-banner button {
        padding: 10px 15px;
        font-size: 12px;
    }
}