/* ==========================================
   SIMPLE CLEAN DASHBOARDS PORTAL STYLES
========================================== */

.dash-site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 24px;
  box-shadow: 0 2px 10px rgba(0, 31, 63, 0.04);
}

.dash-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.dash-portal-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
}

.dash-hero-simple {
  background: #ffffff;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.dash-hero-simple h1 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #001f3f;
  margin-bottom: 0.5rem;
}

.dash-hero-simple p {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0;
}

.dash-main-simple {
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  background: #f8fafc;
  min-height: 70vh;
}

.dash-simple-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dash-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* SIMPLE CLEAN CARD */
.dash-simple-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 31, 63, 0.03);
}

.dash-simple-card:hover {
  transform: translateY(-4px);
  border-color: #2f80ed;
  box-shadow: 0 12px 25px rgba(47, 128, 237, 0.12);
}

.dash-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(47, 128, 237, 0.08);
  color: #2f80ed;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.25s ease;
}

.dash-simple-card:hover .dash-card-icon {
  background: #2f80ed;
  color: #ffffff;
}

.dash-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 0.3rem;
}

.dash-card-link {
  font-size: 0.85rem;
  color: #64748b;
  font-family: monospace;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dash-simple-card:hover .dash-card-link {
  color: #2f80ed;
}

@media (max-width: 576px) {
  .dash-simple-grid {
    grid-template-columns: 1fr;
  }
}
