#custom-consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
}

#custom-consent-popup {
    position: relative;
    max-width: 480px;
    width: 90%;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    box-sizing: border-box;
}

#custom-consent-message {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

#custom-consent-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

#custom-consent-buttons button {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    font-family: inherit;
}
