.cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}

.cookie-notice.position-bottom {
    bottom: 0;
}

.cookie-notice.position-top {
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

.cookie-notice-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-notice-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-accept-btn {
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-accept-btn:hover {
    opacity: 0.9;
}

.cookie-more-info {
    text-decoration: underline;
    font-size: 14px;
    padding: 8px 12px;
}

.cookie-more-info:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice-text {
        margin-bottom: 10px;
    }
    
    .cookie-notice-buttons {
        justify-content: center;
    }
}