
/* components.css */

/* components.css */

.stat-card,
.card-body,
.table-wrapper {
  font-family: 'Inter', sans-serif;
}

.card-header h1, h2, h3, h4, h5, h6, .card-header .mb-0, .modal-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.stat-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -2px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.05);
}

.table-wrapper {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
}

.login-page {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100dvh;
  background: linear-gradient(135deg, #f0f4f8 0%, #e1e9f1 100%);
}

.login-box {
  width:100%;
  max-width:380px;
}

.card {
  border: 1px solid rgba(255,255,255,0.6) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px);
}

.card-header, .card-footer {
  background: transparent !important;
}
/* ── Applicativo — upload preview ────────────────────────── */

.app-preview {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-preview-wide {
    height: 72px;
    padding: 8px 16px;
}

.app-preview-wide img {
    max-height: 56px;
    max-width: 100%;
    object-fit: contain;
}

.app-preview-sq {
    height: 72px;
    width: 72px;
}

.app-preview-sq img {
    max-height: 56px;
    max-width: 56px;
    object-fit: contain;
}
