#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: #ddd;
    border-top: 3px solid #E61230;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text p {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-consent-text a {
    color: #E61230;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-consent-text a:hover {
    color: #ff2a4a;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.cookie-consent-btn-primary {
    background-color: #E61230;
    color: #ffffff;
}

.cookie-consent-btn-primary:hover {
    background-color: #cc0e2a;
}

.cookie-consent-btn-secondary {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.cookie-consent-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    .cookie-consent-inner {
        flex-direction: column;
        padding: 15px 20px;
        text-align: center;
    }

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-consent-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media print {
    #cookie-consent-banner {
        display: none !important;
    }
}
