

.cookie-consent-container {
    position: fixed;
    
    left: 0;
    bottom: 0;
    min-width: 100%;
    background-color: rgba(50, 50, 58, 1);
    padding: 5px;
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2d3748;
}

.cookie-text {
        text-align: center;
    margin: 10px 0 10px;
    color: #fff;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.accept-btn, .reject-btn, .settings-btn {
    padding: 5px 6px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.accept-btn {
    background-color: #4299e1;
    color: white;
    border: none;
}

.reject-btn {
    background-color: white;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

.settings-btn {
    background-color: #edf2f7;
    color: #2d3748;
    border: none;
}

.accept-btn:hover {
    background-color: #3182ce;
}

.reject-btn:hover {
    background-color: #f7fafc;
}

.settings-btn:hover {
    background-color: #e2e8f0;
}

.hidden {
    display: none;
}
