.modalOverlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 16px; }
.modalContent { background: #fff; border-radius: 16px; width: 100%; max-height: 90vh; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 24px 64px rgba(0,0,0,.18); }
.modalHeader { display: flex; align-items: flex-start; justify-content: space-between; padding: 20px 24px 16px; border-bottom: 1px solid #f1f5f9; background: linear-gradient(135deg,#f0fdfa 0%,#fff 100%); }
.modalTitle { font-size: 18px; font-weight: 700; color: #111827; margin: 0; }
.modalSubtitle { font-size: 13px; color: #6b7280; margin: 4px 0 0; }
.closeBtn { background: #f3f4f6; border: none; border-radius: 8px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; color: #6b7280; transition: all .15s; flex-shrink: 0; }
.closeBtn:hover { background: #fee2e2; color: #dc2626; }
.form { display: flex; flex-direction: column; overflow: hidden; flex: 1; }
.formBody { padding: 20px 24px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sectionHeader { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #0f766e; text-transform: uppercase; letter-spacing: .05em; margin: 16px 0 10px; }
.sectionDot { display: inline-block; width: 6px; height: 16px; border-radius: 3px; background: #14b8a6; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.full { grid-column: 1 / -1; }
.label { display: block; font-size: 12px; font-weight: 600; color: #374151; margin-bottom: 4px; }
.inputSmall { width: 100%; padding: 9px 12px; border: 1px solid #e5e7eb; border-radius: 8px; font-size: 13px; color: #111827; background: #fafafa; outline: none; transition: border-color .15s, box-shadow .15s; box-sizing: border-box; font-family: inherit; }
.inputSmall:focus { border-color: #14b8a6; box-shadow: 0 0 0 3px rgba(20,184,166,.12); background: #fff; }
.inputError { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important; }
.error { display: block; font-size: 11px; color: #ef4444; margin-top: 3px; }
.errorAnimate { animation: shake .2s ease-in-out; }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.modalFooter { display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding: 16px 24px; border-top: 1px solid #f1f5f9; background: #fafafa; }
.btnCancel { padding: 9px 20px; border: 1px solid #e5e7eb; border-radius: 8px; background: #fff; color: #374151; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s; }
.btnCancel:hover { background: #f9fafb; }
.btnSubmit { padding: 9px 24px; border: none; border-radius: 8px; background: linear-gradient(135deg,#0f766e,#14b8a6); color: #fff; font-size: 13px; font-weight: 700; cursor: pointer; box-shadow: 0 2px 8px rgba(20,184,166,.3); transition: all .15s; }
.btnSubmit:hover { opacity: .92; }
.btnSubmit:disabled { opacity: .6; cursor: not-allowed; }
.loadingSpinner { padding: 40px; text-align: center; color: #9ca3af; font-size: 14px; }
