#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    transform: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 15px 25px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 90%;
    width: 600px;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-settings {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-category {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f8f9fa;
}

.cookie-category h4 {
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.cookie-category p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

#cookie-accept-all {
    background: #5db130;
    color: white;
}

#cookie-accept-all:hover {
    background: #4a9a26;
}

#cookie-save-settings {
    background: #5db130;
    color: white;
}

#cookie-save-settings:hover {
    background: #4a9a26;
}

#cookie-show-settings {
    background: transparent;
    color: #5db130;
    text-decoration: underline;
    padding: 8px 0;
}

#cookie-show-settings:hover {
    color: #4a9a26;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-toggle label {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #cookie-banner {
        bottom: 10px;
        left: 10px;
        width: calc(100% - 20px);
        padding: 12px 15px;
    }
    
    .cookie-buttons {
        gap: 6px;
    }
    
    .cookie-buttons button {
        padding: 10px 16px;
    }
    
    #cookie-settings {
        padding: 15px;
    }
} 