/* styles/cookie-consent.css */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(20, 20, 30, 0.95);
    color: white;
    padding: 15px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    border-top: 1px dashed hsl(141, 76%, 46%);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-consent-text a {
    color: hsl(141, 76%, 46%);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

#cookie-accept {
    background-color: hsl(141, 76%, 46%);
    color: white;
}

#cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

#cookie-settings {
    background-color: transparent;
    color: white;
}

#cookie-settings-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(20, 20, 30, 0.98);
    color: white;
    padding: 25px;
    border-radius: 11px;
    z-index: 10000;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    border: 1px solid hsl(141, 76%, 46%);
}

.cookie-settings-title {
    margin-top: 0;
    color: hsl(141, 76%, 46%);
    font-size: 20px;
}

.cookie-settings-group {
    margin-bottom: 15px;
}

.cookie-settings-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.cookie-settings-group input[type="checkbox"] {
    margin-right: 10px;
}

.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

#cookie-save-settings {
    background-color: hsl(141, 76%, 46%);
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 11px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}