/**
 * Cookie consent banner styles
 * cvetkov.org — 2026-05-22
 */
#cvetkov-cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #2a2a2a;
    color: #fff;
    padding: 16px 24px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
}

#cvetkov-cookie-banner .cc-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

#cvetkov-cookie-banner .cc-text {
    flex: 1 1 400px;
    color: #e0e0e0;
}

#cvetkov-cookie-banner .cc-text a {
    color: #ffd966;
    text-decoration: underline;
}

#cvetkov-cookie-banner .cc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

#cvetkov-cookie-banner button {
    background: #fff;
    color: #2a2a2a;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    white-space: nowrap;
    transition: background 0.15s;
}

#cvetkov-cookie-banner button:hover {
    background: #f0f0f0;
}

#cvetkov-cookie-banner button.cc-btn-secondary {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
    font-weight: normal;
}

#cvetkov-cookie-banner button.cc-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.cc-reset-link {
    font-size: 12px;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: Arial, sans-serif;
}

.cc-reset-link:hover {
    color: #aaa;
}

@media (max-width: 600px) {
    #cvetkov-cookie-banner {
        padding: 12px 16px;
    }
    #cvetkov-cookie-banner .cc-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    #cvetkov-cookie-banner .cc-buttons {
        width: 100%;
    }
}
