/* M54.ui-entrega: estilos do componente de entrega acadêmica */

.cf-ea-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(3px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  animation: cfea-fade .15s ease-out;
}
.cf-ea-modal {
  background: #fff;
  border-radius: 12px;
  width: min(640px, 95vw);
  max-height: 88vh;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 50px rgba(15,23,42,.3);
  z-index: 10000;
  overflow: hidden;
  animation: cfea-pop .18s cubic-bezier(.16,1,.3,1);
}
@keyframes cfea-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cfea-pop { from { opacity: 0; transform: translateY(8px) scale(.985); } to { opacity: 1; transform: none; } }

.cf-ea-close {
  width: 28px; height: 28px;
  border: none; background: transparent;
  border-radius: 6px; color: #64748b;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .12s;
}
.cf-ea-close:hover { background: #f1f5f9; color: #0f172a; }

.cf-ea-label {
  display: block;
  font-size: 11px; color: #64748b; font-weight: 500;
  margin-bottom: 4px;
}
.cf-ea-input {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 12.5px;
  color: #0f172a;
  background: #fff;
}
.cf-ea-input:focus {
  outline: none;
  border-color: #1E5BAA;
  box-shadow: 0 0 0 3px rgba(30,91,170,.08);
}
.cf-ea-modal > div[style*="grid-template-columns"] {
  overflow-y: auto;
}
