body {
    background: #F7F6F2;
    font-family: 'Inter', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}


.black-translucid-glass-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(17, 17, 17, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.black-translucid-glass-modal.show {
    opacity: 1;
}

.modal-content {
    background: #F7F6F2;
    margin: auto;
    padding: 24px 20px 20px;
    border: 1px solid #E0DED9;
    width: 80%;
    max-width: 500px;
    border-radius: 3px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.modal-content h3 {
    margin: 0 0 16px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #111111;
    letter-spacing: 0.02em;
    text-align: center;
}

.modal-content p {
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-align: center;
    line-height: 1.55;
}

.close-modal {
    font-size: 1.2rem;
    color: #888888;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 12px;
    transition: color 150ms ease;
    line-height: 1;
}

.close-modal:hover {
    color: #111111;
    transform: none;
}

.single-button-for-modal {
    border: 1px solid #111111;
    background: transparent;
    color: #111111;
    border-radius: 3px;
    padding: 8px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 12px;
    cursor: pointer;
    box-shadow: none;
    transition: 150ms ease;
}

.single-button-for-modal:disabled {
    border-color: #ccc;
    color: #ccc;
    cursor: default;
    pointer-events: none;
}

.single-button-for-modal:hover {
    background: #111111;
    color: #F7F6F2;
    transform: none;
    box-shadow: none;
}

.single-button-for-modal:active {
    background: #111111;
    color: #F7F6F2;
    transform: none;
    box-shadow: none;
}

.single-text-input-for-modal {
    width: 100%;
    padding: 0 0 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #111111;
    border-radius: 0;
    outline: none;
    margin-top: 12px;
    color: #111111;
    background: transparent;
    box-shadow: none;
    transition: border-color 150ms ease;
}

.single-text-input-for-modal::placeholder {
    color: #CCCCCC;
    font-style: italic;
}

.single-text-input-for-modal:focus {
    border-bottom-color: #111111;
    box-shadow: none;
}
