/*
 * Leaving Site Modal Styles
 * Uses the same overlay/slideout structure as other modals
 */

/* Higher z-index to appear above product detail modal */
#leavingSiteModal {
    z-index: 1100;
}

/* Modal content specific styles */
.leaving-site-modal__content {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding: 40px 60px;
}

.leaving-site-modal__body {
    margin-top: 150px;
    margin-left: 80px;
    max-width: 600px;
}

.leaving-site-modal__title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.31;
    letter-spacing: -0.52px;
    color: #000;
    margin: 0 0 20px 0;
}

.leaving-site-modal__text {
    font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.86;
    color: #000;
    margin: 0 0 30px 0;
}

.leaving-site-modal__button {
    width: 168px;
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #1d52e1;
    border-radius: 100px;
    background-color: white;
    border: solid 1px #1d52e1;
    font-family: 'Comfortaa', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.leaving-site-modal__button:hover {
    background-color: #1d52e1;
    color: white;
}

/* Careers-specific disclosure */
.leaving-site-modal__careers-disclosure {
    margin-top: 15px;
    margin-bottom: 30px;
    padding: 10px;
    background-color: #f8f9fa;
    border-left: 3px solid #1d52e1;
    font-style: italic;
    font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.86;
    color: #000;
}

.leaving-site-modal__careers-disclosure a {
    color: #1d52e1;
    text-decoration: underline;
}

.leaving-site-modal__careers-disclosure a:hover {
    color: #0d42d1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .leaving-site-modal__body {
        margin-top: 110px;
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    .leaving-site-modal__content {
        padding: 40px 20px;
    }

    .leaving-site-modal__body {
        margin-left: 10px;
    }
}