/*
 * AKT Cookie Consent Styles
 */

#akt-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1d1d1d;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 999999;
    font-size: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    /* Flexbox on vajalik, aga alguses peidame PHP inline stiiliga (display:none), JS teeb nähtavaks */
    display: flex; 
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Responsive paigutus desktopil */
@media (min-width: 768px) {
    #akt-cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 20px 40px;
    }
}

.akt-cookie-content {
    flex: 1;
}

/* Valge tekst !important, et kirjutada üle teema stiilid */
.akt-cookie-text {
    margin: 0;
    line-height: 1.5;
    color: #ffffff !important; 
}

.akt-cookie-link {
    color: #00b3ff;
    text-decoration: underline;
    margin-left: 5px;
}

.akt-cookie-link:hover {
    color: #66d1ff;
    text-decoration: none;
}

.akt-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.akt-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.akt-btn:hover {
    opacity: 0.9;
}

.akt-btn-accept {
    background: #28a745;
    color: #fff;
}

.akt-btn-necessary {
    background: #555;
    color: #fff;
}