/* Email Target Plan Modal Styles */

.email-tp-modal {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.email-tp-header {
    background: linear-gradient(135deg, #ec5f59 0%, #D4605A 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-tp-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    color: #372562;
}

.email-tp-footer {
    padding: 1rem 1.5rem;
    background: #F0F7F5;
    border-top: 1px solid #C8DDD8;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.email-tp-field {
    margin-bottom: 1rem;
}

.email-tp-field label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #372562;
    margin-bottom: 0.25rem;
}

.email-tp-field input[type="email"],
.email-tp-field input[type="text"] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #C8DDD8;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #372562;
    box-sizing: border-box;
}

.email-tp-field input:focus {
    outline: none;
    border-color: #ec5f59;
    box-shadow: 0 0 0 2px rgba(232, 114, 106, 0.15);
}

.email-tp-field textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #C8DDD8;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #372562;
    font-family: inherit;
    resize: vertical;
    box-sizing: border-box;
    line-height: 1.5;
}

.email-tp-field textarea:focus {
    outline: none;
    border-color: #ec5f59;
    box-shadow: 0 0 0 2px rgba(232, 114, 106, 0.15);
}

.email-tp-field input:disabled,
.email-tp-field textarea:disabled {
    background: #f0f0f0;
    cursor: not-allowed;
}
