/*
 * Customer Personal Data Section Styles
 *
 * This file contains CSS rules and styles specifically related to the
 * customer personal data section of the application. It defines the
 * layout, appearance, and responsive behavior for elements that display
 * or collect customer personal information, ensuring a consistent and
 * user-friendly interface.
 */

.grid-row {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1rem;
    overflow-x: hidden;
}

.grid-col-1,
.grid-col-2 {
    padding: 1rem;
}

.grid-col-1 {
    padding-left: 0;
}

.email-send-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* border-radius: 16px; */
    border: 1px solid var(--Components-Modal-Border, rgba(0, 0, 0, 0.17));
    background: var(--Surfaces-surface-variant);
}

.email-send-heading {
    margin-bottom: 24px;
}

.email-send-content {
    text-align: left;
}

/* --- Mobile: pillole in orizzontale scrollabile --- */
@media (max-width: 1024px) {
    .grid-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0 1rem 1rem 1rem;
    }

    .grid-col-1,
    .grid-col-2 {
        padding: 0.5rem 0;
    }

    .grid-col-1 {
        padding-left: 0;
    }

    .pills-mobile {
        padding: 1rem;
    }

    .pills-mobile .dropdown-menu {
        width: 91%;
    }
}