.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 30, 0.95);
    color: #fff;
    padding: 15px 30px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
    font-family: 'Inter', sans-serif;
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-consent-content {
    flex: 1;
    padding-right: 20px;
}

.cookie-consent h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-consent p {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-consent-links {
    display: flex;
    gap: 10px;
}

.cookie-consent-links a {
    color: #4fc3f7;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-right: 15px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept-all {
    background-color: #4e0099;
    color: white;
}

.cookie-btn-accept-all:hover {
    background-color: #6300c6;
}

.cookie-btn-essential {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-essential:hover {
    border-color: white;
}

.cookie-btn-settings {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings:hover {
    border-color: white;
}

/* Cookie settings panel */
.cookie-settings-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-settings-panel.active {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background-color: white;
    color: #333;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-settings-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
}

.cookie-settings-close:hover {
    color: #333;
}

.cookie-settings-options {
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-option-title {
    font-weight: 600;
    font-size: 1.05rem;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.cookie-switch-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-switch-slider {
    background-color: #4e0099;
}

input:focus + .cookie-switch-slider {
    box-shadow: 0 0 1px #4e0099;
}

input:checked + .cookie-switch-slider:before {
    transform: translateX(26px);
}

.cookie-option-description {
    font-size: 0.9rem;
    color: #666;
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-settings-save {
    background-color: #4e0099;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-settings-save:hover {
    background-color: #6300c6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    
    .cookie-consent-content {
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
} 