/* fiori-launchpad.css */

body {
  margin: 0;
  font-family: "72", "Segoe UI", Arial, sans-serif;
  background-color: #f3f4f5;
}

.shell-bar {
  background-color: #354a5f;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.launchpad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.fiori-tile {
  background-color: #ffffff;

border-radius: 12px;  /* More rounded corners than   border-radius: 4px; */
  padding: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;  /*make tiles bigger */
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fiori-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.tile-header {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tile-subtitle {
  font-size: 0.85rem;
  color: #6a6d70;
  flex-grow: 1;
}

.tile-icon {
  font-size: 1.8rem;
  color: #007cc0;
  align-self: flex-end;
}
/* Make tile links clean */
.tile-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Modifier for 2x1 tile (wide tile) */
.fiori-tile.tile-2x1 {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .fiori-tile {
    height: 100px;
    padding: 0.75rem;
  }

  .tile-header {
    font-size: 0.95rem;
  }

  .tile-subtitle {
    font-size: 0.8rem;
  }

  .tile-icon {
    font-size: 1.5rem;
  }
}