
/* Clean Cookie Banner - No Nagging */
.cookie-clean {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
    border-left: 5px solid #4299e1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-clean-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-clean-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2d3748;
}

.cookie-clean-text {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
}

.cookie-clean-text a {
    color: #4299e1;
    text-decoration: none;
}

.cookie-clean-text a:hover {
    text-decoration: underline;
}

.cookie-clean-buttons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.cookie-clean-btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    text-align: center;
}

.cookie-clean-btn:hover {
    transform: translateY(-1px);
}

.cookie-clean-decline {
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.cookie-clean-decline:hover {
    background: #edf2f7;
}

.cookie-clean-accept {
    background: #4299e1;
    color: white;
}

.cookie-clean-accept:hover {
    background: #3182ce;
}

.cookie-icon {
    font-size: 20px;
}

/* Close button */
.cookie-clean-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-clean-close:hover {
    background: #f7fafc;
    color: #4a5568;
}

@media (max-width: 576px) {
    .cookie-clean {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}

