#fast-cookie-banner {
    position: fixed;
    bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#fast-cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.fast-cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 5px;
}

#fast-cookie-banner button {
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

#fast-cookie-banner button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

#fast-cookie-banner button:active {
    transform: translateY(0);
}

/* Choices list layout */
.fast-choice-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 700;
}

.fast-choice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.fast-choice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.fast-choice-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.fast-choice-info strong {
    font-size: 13px;
}

.fast-choice-info p {
    font-size: 11px !important;
    opacity: 0.85;
    line-height: 1.4 !important;
    margin-top: 2px !important;
}

/* Switch Toggle Styles */
.fast-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
    flex-shrink: 0;
}

.fast-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.fast-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.2);
    transition: .3s ease;
    border-radius: 22px;
}

.fast-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s ease;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.fast-switch input:checked + .fast-slider:before {
    transform: translateX(22px);
}

.fast-switch input:disabled + .fast-slider {
    opacity: 0.4;
    cursor: not-allowed;
}

.fast-hidden {
    display: none !important;
}

#fast-cookie-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 99998;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

#fast-cookie-trigger:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

#fast-cookie-trigger svg {
    display: block;
}

@media (max-width: 576px) {
    #fast-cookie-banner {
        left: 15px !important;
        right: 15px !important;
        bottom: 15px !important;
        max-width: none !important;
    }
    .fast-cookie-buttons {
        flex-direction: column;
    }
    #fast-cookie-banner button {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    .fast-choice-item {
        flex-direction: row;
        align-items: center;
    }
}