/* EU Cookie Black Sea - Cookie Consent Banner Styles */

#eu-cookie-bs-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

#eu-cookie-bs-banner.eu-cookie-bs-bottom {
    bottom: 0;
}

#eu-cookie-bs-banner.eu-cookie-bs-top {
    top: 0;
}

.eu-cookie-bs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Dark Theme */
.eu-cookie-bs-theme-dark {
    background: #1a1a1a;
    color: #ffffff;
}

.eu-cookie-bs-theme-dark .eu-cookie-bs-title {
    color: #ffffff;
}

.eu-cookie-bs-theme-dark .eu-cookie-bs-description {
    color: #cccccc;
}

.eu-cookie-bs-theme-dark .eu-cookie-bs-category-desc {
    color: #999999;
}

.eu-cookie-bs-theme-dark .eu-cookie-bs-links a {
    color: #4a9eff;
}

/* Light Theme */
.eu-cookie-bs-theme-light {
    background: #ffffff;
    color: #333333;
    border-top: 1px solid #e0e0e0;
}

.eu-cookie-bs-theme-light .eu-cookie-bs-title {
    color: #333333;
}

.eu-cookie-bs-theme-light .eu-cookie-bs-description {
    color: #666666;
}

.eu-cookie-bs-theme-light .eu-cookie-bs-category-desc {
    color: #888888;
}

.eu-cookie-bs-theme-light .eu-cookie-bs-links a {
    color: #0066cc;
}

/* Content */
.eu-cookie-bs-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.eu-cookie-bs-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.eu-cookie-bs-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Categories */
.eu-cookie-bs-categories {
    margin: 15px 0;
}

.eu-cookie-bs-category {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.eu-cookie-bs-theme-light .eu-cookie-bs-category {
    background: rgba(0, 0, 0, 0.03);
}

.eu-cookie-bs-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}

.eu-cookie-bs-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.eu-cookie-bs-category input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.eu-cookie-bs-required {
    font-size: 12px;
    opacity: 0.7;
}

.eu-cookie-bs-category-desc {
    font-size: 13px;
    margin: 8px 0 0 28px;
    line-height: 1.5;
}

/* Actions */
.eu-cookie-bs-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.eu-cookie-bs-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eu-cookie-bs-btn-accept {
    background: #4CAF50;
    color: white;
}

.eu-cookie-bs-btn-accept:hover {
    background: #45a049;
}

.eu-cookie-bs-btn-reject {
    background: #f44336;
    color: white;
}

.eu-cookie-bs-btn-reject:hover {
    background: #da190b;
}

.eu-cookie-bs-btn-customize {
    background: #2196F3;
    color: white;
}

.eu-cookie-bs-btn-customize:hover {
    background: #0b7dda;
}

.eu-cookie-bs-btn-save {
    background: #FF9800;
    color: white;
}

.eu-cookie-bs-btn-save:hover {
    background: #e68900;
}

/* Links */
.eu-cookie-bs-links {
    display: flex;
    gap: 20px;
    font-size: 13px;
    margin-top: 10px;
}

.eu-cookie-bs-links a {
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.eu-cookie-bs-links a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .eu-cookie-bs-container {
        padding: 15px;
    }

    .eu-cookie-bs-title {
        font-size: 18px;
    }

    .eu-cookie-bs-description {
        font-size: 13px;
    }

    .eu-cookie-bs-actions {
        flex-direction: column;
    }

    .eu-cookie-bs-btn {
        width: 100%;
        text-align: center;
    }

    .eu-cookie-bs-links {
        flex-direction: column;
        gap: 10px;
    }
}