#cookies-message-container {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 2147483000;
    width: min(30rem, calc(100vw - 2rem));
    border: 1px solid #d3dee9;
    border-left: 6px solid #2f6a43;
    border-radius: 12px;
    background: #f9fcfa;
    color: #1f2b36;
    box-shadow: 0 14px 32px rgba(10, 24, 38, 0.24);
}

#cookies-message {
    padding: 0.95rem 1rem 1rem;
    font-size: 0.95rem;
    line-height: 1.45;
    display: grid;
    gap: 0.65rem;
}

#cookies-message p {
    margin: 0;
}

#cookies-actions {
    display: flex;
    justify-content: flex-end;
}

#accept-cookies-button {
    border: 1px solid #6f9a7b;
    border-radius: 9px;
    background: #2f6a43;
    color: #eef7f2;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.48rem 0.82rem;
    cursor: pointer;
}

#accept-cookies-button:hover,
#accept-cookies-button:focus {
    background: #255638;
    border-color: #5f8d6d;
    color: #ffffff;
    outline: none;
}

#cookies-policy-link {
    color: #2f6a43;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#cookies-policy-link:hover,
#cookies-policy-link:focus {
    color: #1f4d31;
}

@media (max-width: 700px) {
    #cookies-message-container {
        right: 0.6rem;
        left: 0.6rem;
        width: auto;
        bottom: 0.6rem;
    }

    #cookies-message {
        padding: 0.85rem 0.9rem 0.9rem;
        font-size: 0.9rem;
    }

    #accept-cookies-button {
        width: 100%;
    }
}
