/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    z-index: 9999;   
    display: none; /* Po defaultu sakriveno dok se ne provjeri status kolačića */
    width: 100%;
}

.cookie-banner__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #111;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    box-sizing: border-box;
}

.cookie-banner p {
    font-size: 16px;
    font-weight: 300;
    flex: 1;
    margin-right: 15px;
}

.cookie__buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 14px;
}

.accept-btn {
    background: #7ADD00;
    color: #fff;
}

.decline-btn {
    background: #FF4B4B;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}


.cookie-modal-close {
    cursor: pointer;
}

/* Modal */
/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    width: 600px;
}

.cookie-modal-content {
    width: 100%;
    padding:15px;
}

.cookie-modal-content h3 {
    margin-top: 0;
}

.cookie-modal-buttons {
    margin-top: 10px;
    text-align: right;
}

.save-btn {
    background: #02a3d4;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.save-btn:hover {
    background: #028bb5;
}

/* RESPONSIVE */
@media (max-width: 796px) {

    .cookie-modal {
        width: 100%;
        height: 100%;
        align-items: center;
    }
    .cookie-banner__container {
        flex-direction: column;
    }

    .cookie__buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}
