/* Input Modal View Styles */

input-modal-view {
    --primary-color: #702A2A;
    --input-border: #e0e0e0;
    --input-focus: #702A2A;
}

input-modal-view input[type="text"],
input-modal-view textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--input-border);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

input-modal-view input[type="text"]:focus,
input-modal-view textarea:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 0 0 3px rgba(112, 42, 42, 0.1);
}

input-modal-view textarea {
    resize: vertical;
    min-height: 5rem;
}

input-modal-view .error-message {
    color: #c0392b;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #ffebee;
    border-left: 3px solid #e74c3c;
    border-radius: 0.375rem;
}

input-modal-view .btn-confirm {
    background: var(--primary-color);
    color: white;
}

input-modal-view .btn-confirm:hover {
    background: #5a1f1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112, 42, 42, 0.4);
}

input-modal-view .btn-cancel {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #e0e0e0;
}

input-modal-view .btn-cancel:hover {
    background: #e0e0e0;
    border-color: #999;
}