


/* Dashboard Wrapper */
.dashboard {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem;
}

/* Welcome Section */
.welcome-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.welcome-info {
  max-width: 600px;
}

.welcome-info h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.description {
  font-size: 1rem;
  color: var(--subtext-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.portal-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px var(--shadow);
}

/* Shortcuts Section */
.shortcuts-section {
  margin-top: 3rem;
}

.shortcuts-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.shortcuts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.shortcut {
  background-color: var(--header-bg);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px var(--shadow);
}

.shortcut h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--link-color);
  margin-bottom: 0.75rem;
}

.shortcut p {
  font-size: 1rem;
  color: var(--subtext-color);
  margin-bottom: 1.25rem;
}

/* Button */
.btn-primary {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #2563eb;
}

/* Two‑column Welcome/User‑box Layout */
.welcome-section {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
}

/* Left side: welcome text */
.welcome-left {
  flex: 2;
  max-width: 60%;
}

.welcome-left h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.description {
  font-size: 1rem;
  color: var(--subtext-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.portal-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px var(--shadow);
}

/* Right side: user info */
.welcome-right {
  flex: 1;
}

.user-box {
  background-color: var(--header-bg);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px var(--shadow);
}

.user-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.user-box ul {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  color: var(--link-color);
}

.user-box li {
  margin-bottom: 0.75rem;
}

h3 {
  margin-bottom: 0.5rem;
}

#note {
  margin-bottom: 1.75rem;
}