.feynlab-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1a1a2e;
    color: #ffffff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
}

.feynlab-consent-banner--bottom {
    bottom: 0;
    border-top: 3px solid #306ED6;
}

.feynlab-consent-banner--top {
    top: 0;
    border-bottom: 3px solid #306ED6;
}

.feynlab-consent-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.feynlab-consent-banner__content {
    flex: 1;
}

.feynlab-consent-banner__message {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.feynlab-consent-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.feynlab-consent-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #306ED6;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.feynlab-consent-btn--accept {
    background-color: #306ED6;
    color: #ffffff;
}

.feynlab-consent-btn--accept:hover {
    background-color: #2559b3;
    border-color: #2559b3;
}

.feynlab-consent-btn--reject {
    background-color: transparent;
    color: #306ED6;
    border-color: #306ED6;
}

.feynlab-consent-btn--reject:hover {
    background-color: #306ED6;
    color: #ffffff;
}

.feynlab-consent-btn--customize {
    background-color: transparent;
    color: #cccccc;
    border-color: rgba(255, 255, 255, 0.2);
}

.feynlab-consent-btn--customize:hover {
    border-color: #306ED6;
    color: #306ED6;
}

.feynlab-consent-preferences {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feynlab-consent-preferences__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
}

.feynlab-consent-preferences__title {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 15px 0;
}

.feynlab-consent-preferences__categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.feynlab-consent-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
}

.feynlab-consent-category__label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
}

.feynlab-consent-category__checkbox {
    width: 16px;
    height: 16px;
    accent-color: #306ED6;
}

.feynlab-consent-category__name {
    color: #ffffff;
    font-weight: 600;
}

.feynlab-consent-category__required {
    font-size: 12px;
    color: #cccccc;
    font-weight: 400;
}

.feynlab-consent-category__desc {
    margin: 8px 0 0 24px;
    color: #cccccc;
    font-size: 13px;
    line-height: 1.4;
}

.feynlab-consent-preferences__actions {
    display: flex;
    gap: 10px;
}

.feynlab-consent-settings-link {
    cursor: pointer;
    color: inherit;
    text-decoration: underline;
}

.feynlab-consent-settings-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .feynlab-consent-banner__inner {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .feynlab-consent-banner__actions {
        width: 100%;
        flex-direction: column;
    }

    .feynlab-consent-btn {
        width: 100%;
        text-align: center;
    }

    .feynlab-consent-preferences__categories {
        grid-template-columns: 1fr;
    }

    .feynlab-consent-preferences__actions {
        flex-direction: column;
    }
}
