.jtal-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 16px 24px;
    border-top: 3px solid #e94560;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.jtal-consent-banner.jtal-consent-hidden {
    display: none;
}

.jtal-consent-main {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.jtal-consent-text {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.jtal-consent-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.jtal-btn {
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, border-color 0.2s;
    border: none;
}

.jtal-btn-primary {
    background: #e94560;
    color: #fff;
}

.jtal-btn-primary:hover {
    background: #d63a53;
}

.jtal-btn-secondary {
    background: #e94560;
    color: #fff;
}

.jtal-btn-secondary:hover {
    background: #d63a53;
}

.jtal-btn-ghost {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.jtal-btn-ghost:hover {
    color: #fff;
    border-color: #fff;
}

.jtal-consent-settings {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.jtal-consent-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 6px;
}

.jtal-consent-category-name {
    font-weight: 600;
}

.jtal-consent-category-desc {
    font-size: 12px;
    color: #aaa;
    margin-left: 8px;
}

.jtal-consent-always-on {
    background: #444;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #888;
}

.jtal-consent-settings-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.jtal-consent-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
    flex-shrink: 0;
}

.jtal-consent-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.jtal-consent-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #555;
    border-radius: 11px;
    transition: background 0.2s;
}

.jtal-consent-toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}

.jtal-consent-toggle input:checked + .jtal-consent-toggle-slider {
    background: #e94560;
}

.jtal-consent-toggle input:checked + .jtal-consent-toggle-slider::before {
    transform: translateX(22px);
}

@media (max-width: 600px) {
    .jtal-consent-banner {
        font-size: 13px;
    }

    .jtal-consent-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .jtal-consent-buttons {
        width: 100%;
    }

    .jtal-btn {
        flex: 1;
        text-align: center;
    }

    .jtal-consent-category {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}