/* cookie-consent.css */

.cookie-consent-modal {
    font-size: 14px;
    line-height: 1.45;
}

.cookie-consent-modal .cc-title {
    font-size: 14px;
    font-weight: 600; /* blagi naslov */
}

.cookie-consent-modal .cc-text {
    font-size: 13px;
    font-weight: 400; /* normalan tekst */
    opacity: 0.9;
}

.cookie-consent-modal label {
    font-weight: 400;
}

.cookie-consent-modal input[type="checkbox"] {
    margin-top: 4px;
}

.cookie-consent-modal .cc-box {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 10px;
}

/* === Cookie banner (bottom) === */
#cookieBanner {
    background: #0b3a63; /* ista kao header */
    color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    padding: 16px 20px;
}

/* Dugmad – osnovni stil */
#cookieBanner button {
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

/* Prihvati sve – PRIMARY */
#cookieBanner button[type="submit"]:last-child {
    background: #f2c200;
    color: #1a1a1a;
    font-weight: 600;
}

#cookieBanner button[type="submit"]:last-child:hover {
    background: #ddb100;
}

/* Odbaci sve – secondary */
#cookieBanner form:first-of-type button {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    box-shadow: 0 -3px 12px rgba(0,0,0,0.25);
}

#cookieBanner form:first-of-type button:hover {
    background: rgba(255,255,255,0.25);
}

/* Prilagodi – link/outline stil */
#btnCustomize {
    background: none;
    border: none;
    color: #9fd3ff;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

#btnCustomize:hover {
    color: #ffffff;
}