.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent__text {
    flex: 1;
}

.cookie-consent__buttons {
    display: flex;
    gap: 1rem;
}

.cookie-consent__button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent__button--accept {
    background: #4b79a1;
    color: white;
}

.cookie-consent__button--accept:hover {
    background: #2c3e50;
}

.cookie-consent__button--decline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.cookie-consent__button--decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-consent__link {
    color: #ADD8E6;
    text-decoration: underline;
}

.cookie-consent__link:hover {
    color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.cookie-options {
    margin: 1rem 0;
}

.cookie-option {
    margin: 0.5rem 0;
} 