/* Podstawowe style */
#cb-cookie-banner {
    position: fixed;
    z-index: 999999;
    display: flex;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    box-sizing: border-box;
    font-family: inherit;
    background-color: #ffffff; /* domyślne, nadpisywane inline jeśli wybrano w panelu */
    color: #333333;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

#cb-cookie-banner.cb-hidden {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    pointer-events: none;
}

#cb-cookie-banner .cb-message {
    flex: 1;
    line-height: 1.5;
    font-size: 14px;
}

.cb-actions button {
    cursor: pointer;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    background-color: #212529; /* domyślne */
    color: #ffffff;
    transition: filter 0.2s, transform 0.1s;
    font-family: inherit;
    font-size: 14px;
}

.cb-actions button:hover {
    filter: brightness(0.9);
}

.cb-actions button:active {
    transform: scale(0.98);
}

.cb-actions .cb-decline {
    cursor: pointer;
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 600;
    color: #666;
    font-family: inherit;
    font-size: 14px;
    transition: color 0.2s;
}

.cb-actions .cb-decline:hover {
    color: #333;
    text-decoration: underline;
}

/* Układy */

/* bottom-small */
#cb-cookie-banner.cb-layout-bottom-small {
    bottom: 24px;
    left: 24px;
    max-width: 350px;
    border-radius: 12px;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
}
#cb-cookie-banner.cb-layout-bottom-small .cb-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

/* bottom-full */
#cb-cookie-banner.cb-layout-bottom-full {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

/* center-large (Popup) */
#cb-cookie-banner.cb-layout-center-large {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
#cb-cookie-banner.cb-layout-center-large.cb-hidden {
    transform: translate(-50%, -45%) !important;
}

/* Responsywność */
@media (max-width: 768px) {
    #cb-cookie-banner.cb-layout-bottom-small {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
        width: auto;
    }
    
    #cb-cookie-banner.cb-layout-bottom-full {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    #cb-cookie-banner.cb-layout-bottom-full .cb-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    #cb-cookie-banner.cb-layout-bottom-full .cb-actions button {
        width: 100%;
    }
    #cb-cookie-banner.cb-layout-bottom-full .cb-actions .cb-decline {
        text-align: center;
    }
}
