.medfam-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: auto;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.medfam-cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.medfam-cookie-banner__text {
    font-size: 12px;
    line-height: 1.5;
    color: #333;
}

.medfam-cookie-banner__text a {
    color: #333;
    text-decoration: underline;
}

.medfam-cookie-banner__buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.medfam-cookie-banner__accept {
    background: #9c759b;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.medfam-cookie-banner__accept:hover {
    background: #9c759b;
}

@media (max-width: 768px) {
    .medfam-cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }

    .medfam-cookie-banner__text {
        font-size: 12px;
    }

    .medfam-cookie-banner__accept {
        padding: 10px 20px;
        font-size: 12px;
    }
}