.fc-cookie-consent {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1080;
    max-width: 720px;
    margin: 0 auto;
    padding: 0.8rem 0.95rem;
    border: 1px solid #dfe7f4;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 30px rgba(31, 47, 72, 0.13);
    backdrop-filter: blur(12px);
}

.fc-cookie-consent__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.fc-cookie-consent__text {
    color: #52647e;
    font-size: 0.78rem;
    line-height: 1.4;
}

.fc-cookie-consent__text a {
    color: #376eae;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fc-cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 0.45rem;
}

.fc-cookie-consent__button {
    min-width: 6.3rem;
    padding: 0.42rem 0.7rem;
    border: 1px solid transparent;
    border-radius: 9px;
    font: inherit;
    font-size: 0.74rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.fc-cookie-consent__button--primary {
    color: #fff;
    background: #16a34a;
}

.fc-cookie-consent__button--primary:hover {
    background: #12843c;
}

.fc-cookie-consent__button--secondary {
    color: #5f7089;
    border-color: #d7e2f0;
    background: #f8fafc;
}

.fc-cookie-consent__button--secondary:hover {
    color: #40536e;
    border-color: #c5d3e5;
    background: #f1f5f9;
}

@media (max-width: 575.98px) {
    .fc-cookie-consent {
        right: 0.7rem;
        bottom: 0.7rem;
        left: 0.7rem;
    }

    .fc-cookie-consent__content {
        align-items: stretch;
        flex-direction: column;
        gap: 0.65rem;
    }

    .fc-cookie-consent__actions {
        width: auto;
        justify-content: flex-end;
    }

    .fc-cookie-consent__button {
        min-width: auto;
        padding: 0.36rem 0.62rem;
    }
}
