.dashboard-content {
  padding: 40px;

  font-family: sans-serif;

  color: var(--text-dark);
}

.welcome-header h1 {
  font-size: 28px;

  margin-bottom: 8px;
}

.welcome-header p {
  color: #666;

  margin-bottom: 30px;
}

/* Układ statystyk */

.stats-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 20px;

  margin-bottom: 40px;
}

.stat-card {
  background: white;

  padding: 20px;

  border-radius: 12px;

  border: 1px solid var(--border-color);

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

  display: flex;

  flex-direction: column;
}

.stat-label {
  font-size: 14px;

  color: #888;

  text-transform: uppercase;

  font-weight: bold;
}

.stat-value {
  font-size: 32px;

  font-weight: bold;

  color: var(--primary-color);

  margin-top: 5px;
}

/* Sekcja informacji */

.info-section h2 {
  margin-bottom: 20px;

  font-size: 20px;
}

.features-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 20px;
}

.feature-item {
  background: #fff;

  padding: 20px;

  border-radius: 12px;

  border-left: 4px solid var(--primary-color);

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
  font-size: 18px;

  margin-bottom: 10px;

  color: var(--primary-color);
}

.feature-item p {
  font-size: 14px;

  line-height: 1.5;

  color: #555;
}

/* Kontener główny */

.dashboard-container {
  padding: 40px;

  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  color: #333;
}

.dashboard-header {
  margin-bottom: 40px;

  text-align: center;
}

/* Układ kafelków (Flexbox) */

.tiles-grid {
  display: flex;

  gap: 25px;

  flex-wrap: wrap;

  justify-content: center;
}

/* Styl pojedynczego kafelka */

.tile {
  background: #ffffff;

  border: 1px solid #e1e4e8;

  border-radius: 12px;

  padding: 30px;

  width: 300px;

  text-align: center;

  transition: all 0.3s ease;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

  display: flex;

  flex-direction: column;

  align-items: center;
}

.tile:hover {
  transform: translateY(-8px);

  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);

  border-color: #4a90e2;
}

/* Ikony i tekst */

.tile-icon {
  font-size: 3rem;

  margin-bottom: 15px;
}

.tile h3 {
  margin: 10px 0;

  color: #2c3e50;
}

.tile p {
  font-size: 0.95rem;

  color: #666;

  line-height: 1.5;

  flex-grow: 1; /* Popycha link na dół kafelka */

  margin-bottom: 20px;
}

/* Linki/Przyciski w kafelkach */

.tile-link {
  text-decoration: none;

  color: #fff;

  background-color: #4a90e2; /* Dopasuj do koloru swojego logo */

  padding: 10px 20px;

  border-radius: 6px;

  font-weight: 600;

  transition: background 0.2s;
}

.tile-link:hover {
  background-color: #357abd;
}
