@charset "utf-8";
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 9999;
    display: none;
    border-top: 2px solid;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    margin-top: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn-accept {
    background: #16c4b2;
    color: white;
}

.cookie-btn-essential {
    background: #757575;
    color: white;
}

.cookie-settings {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.cookie-option {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.cookie-option input {
    margin-right: 0.5rem;
}