.roc-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #091d50;
    color: #ffffff;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.roc-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

.roc-cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.roc-cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.roc-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.roc-btn-primary {
    background-color: #ffffff;
    color: #091d50;
    border-color: #ffffff;
}

.roc-btn-primary:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.roc-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.roc-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .roc-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .roc-cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .roc-btn {
        width: 100%;
        text-align: center;
    }
} 