/**
 * Fail: /css/cookie-banner.css
 * =================================================================
 * See fail sisaldab küpsisebänneri stiile.
 */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

.cookie-consent-banner.hidden {
    transform: translateY(100%);
}

.cookie-consent-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1 1 500px; /* Lubab tekstil kasvada, aga murdub väiksematel ekraanidel */
}

.cookie-consent-text h3 {
    margin-top: 0;
    color: #ffffff;
    font-size: 1.2em;
}

.cookie-consent-text p {
    margin-bottom: 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #5dade2;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-consent-buttons .button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cookie-consent-buttons .button:hover {
    background-color: #2980b9;
}

.cookie-consent-buttons .button.button-secondary {
    background-color: #95a5a6;
}

.cookie-consent-buttons .button.button-secondary:hover {
    background-color: #7f8c8d;
}
