/* Transfer modal — shared marketplace-style components */
.me-transfer-modal__dialog {
    max-width: 440px;
    padding: 22px 22px 20px;
    border-radius: 16px;
}

.me-transfer-modal__header {
    margin-bottom: 16px;
}

.me-transfer-modal__close {
    border-radius: 50%;
    background: #f3f4f6;
}

.me-transfer-event {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.me-transfer-event__thumb {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f4f5;
}

.me-transfer-event__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.me-transfer-event__info {
    flex: 1;
    min-width: 0;
}

.me-transfer-event__name {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #18181b;
    line-height: 1.3;
}

.me-transfer-event__pill {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #52525b;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.me-transfer-ticket-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.me-transfer-ticket {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #f0f0f3;
    border-radius: 12px;
    background: #fafafa;
}

.me-transfer-ticket__left {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}

.me-transfer-ticket__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
}

.me-transfer-ticket__field {
    min-width: 0;
}

.me-transfer-ticket__field--right {
    flex-shrink: 0;
    text-align: right;
}

.me-transfer-ticket__field-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #a1a1aa;
    margin-bottom: 2px;
}

.me-transfer-ticket__field-value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #18181b;
    line-height: 1.3;
}

.me-transfer-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    padding: 0;
    font-size: 12px;
    color: #71717a;
    line-height: 1.45;
}

.me-transfer-notice__icon {
    flex-shrink: 0;
    line-height: 1.45;
}

.me-transfer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.me-transfer-field__label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #18181b;
}

.me-transfer-field__control {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e4e4e7;
    border-radius: 12px;
    background: #fff;
    font-family: var(--font-roobert, inherit);
    font-size: 15px;
    font-weight: 500;
    color: #18181b;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.me-transfer-field__control:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.me-transfer-field__control--error {
    border-color: #fca5a5;
    box-shadow: none;
}

.me-transfer-field__control::placeholder {
    color: #a1a1aa;
}

.me-transfer-lookup-message {
    margin: 0;
    font-size: 12px;
    color: #52525b;
    line-height: 1.45;
}

.me-transfer-profile-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.me-transfer-modal__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.me-transfer-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    background: #fff;
    color: #52525b;
    font-family: var(--font-roobert, inherit);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.me-transfer-btn-ghost:hover {
    background: #fafafa;
    border-color: #d4d4d8;
}

.me-transfer-btn-primary {
    width: auto;
    min-width: 140px;
    min-height: 42px;
}

.me-transfer-modal .me-field-error {
    margin-top: 4px;
}
