body {
  background: #f4f4f4;
  font-family: sans-serif;
  margin: 0;
  padding: 2em;
}

.launcher {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.shortcut {
  background: white;
  border: 2px solid #ddd;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.shortcut i {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.shortcut span {
  font-size: 0.9em;
}

.shortcut:hover {
  background-color: #eaf3ff;
  border-color: #3498db;
  color: #3498db;
  box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}
