.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 550px;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #ddd;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 999999;
    font-family: Arial, sans-serif;
}

.hidden {
    display: none;
}

#cookie-banner h3 {
        font-size: 18px;
		font-weight:bold;
        text-align: center;
        line-height: 1.3;
    }

.cookie-content h2 {
    margin-top: 0;
}

.cookie-buttons button,
#cookie-save {
    width: 100%;
    padding: 8px;
    margin: 6px 0;
    cursor: pointer;
    border-radius: 6px;
    border: none;
    background: #005BBB;
    color: #fff;
}

#cookie-reject-all {
    background: #888;
}

#cookie-show-settings {
    background: #444;
}

.cookie-option {
    display: block;
    padding: 5px 0;
}

.cookie-manage-link {
    font-size: 13px;
    color: #444;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 600px) {

    /* OVO DODAJ — smanjuje banner */
    .cookie-banner {
        width: 90% !important;
        right: 5% !important;
        left: 5% !important;
        bottom: 15px !important;
        padding: 15px !important;
		max-height: 90vh !important;
        overflow-y: auto !important;
    }

    #cookie-banner .cookie-content {
        width: 100%;
        padding: 0;
        font-size: 14px;
    }

    #cookie-banner h3 {
        font-size: 18px;
        text-align: center;
        line-height: 1.3;
    }

    #cookie-banner p {
        font-size: 12px;
        line-height: 1.4;
		text-align: justify;
		
    }

    #cookie-banner .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    #cookie-banner .cookie-buttons button {
        width: 100%;
    }

    #cookie-settings p {
        font-size: 13px;
        line-height: 1.4;
        margin-left: 0 !important;
    }
}