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

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

.gdpr-cookie-consent p {
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

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

.gdpr-cookie-consent-button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.gdpr-cookie-consent-accept {
    background-color: #303BF8;
    color: white;
}

.gdpr-cookie-consent-accept:hover {
    background-color: #2A33D9;
}

.gdpr-cookie-consent-more {
    background-color: #f1f1f1;
    color: #333;
}

.gdpr-cookie-consent-more:hover {
    background-color: #e0e0e0;
}

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