@charset "UTF-8";
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
.tilemenu-public section {
  padding: 1em;
  border-bottom: 1px solid #ddd;
  flex-grow: 1;
}
.tilemenu-public section h1 {
  color: #333;
}
.tilemenu-public {
  flex: 1 1 auto;
  padding: 16px;
}
.tilemenu-topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.tilemenu-lang {
  display: flex;
  gap: 0.5rem;
}
.tilemenu-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}
.tilemenu-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.tilemenu-login:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.tilemenu-login i {
  font-size: 18px;
  line-height: 1;
}
.tilemenu-header {
  margin: 0.5em 0;
  padding: 0 1em;
}
.tilemenu-breadcrumb {
  font-size: 0.85em;
  gap: 0.25rem;
  color: #666;
  margin-bottom: 0.3em;
  display: flex;
  flex-wrap: wrap;
}
.tilemenu-breadcrumb a {
  text-decoration: none;
  color: #666;
}
.tilemenu-breadcrumb a:hover {
  text-decoration: underline;
}
.tilemenu-home i {
  margin-right: 0.25rem;
}
.tilemenu-breadcrumb > * + *::before {
  content: "»";
  display: inline-block;
  margin: 0 0.25rem;
  opacity: 0.6;
}
.tilemenu-breadcrumb::after {
  content: " »";
  margin-left: 0.25rem;
  opacity: 0.6;
}
:dir(rtl) .tilemenu-breadcrumb > * + *::before {
  content: "‹";
}
:dir(rtl) .tilemenu-breadcrumb::after {
  content: " ‹";
}
.tilemenu-header h1 {
  color: #555;
}
.tilemenu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.tilemenu-item {
  display: flex;
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}
.tilemenu-item:hover {
  background-color: #eee;
}
.tilemenu-item.empty {
  background-color: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
  min-height: 10px;
  padding: 0;
}
.square-tile.empty {
  background: none;
  border: none;
  box-shadow: none;
  pointer-events: none;
  min-height: 10px;
  padding: 0;
}
.tilemenu-back {
  background-color: #f1f1f1;
}
.tilemenu-icon {
  max-width: 150px;
  min-width: 50px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.tilemenu-icon i, .tilemenu-icon.fa-lg {
  font-size: 3em;
}
.tilemenu-icon img {
  width: 3.2em;
  height: 3.2em;
  max-width: 3.2em;
  max-height: 3.2em;
  object-fit: contain;
  border-radius: 6px;
}
.tilemenu-text {
  text-align: left;
}
.tilemenu-text p {
  margin: 0;
  line-height: 1.5;
}
.tilemenu-item img {
  max-width: 150px;
  margin-right: 20px;
}
.tilemenu-title {
  margin: 0;
  line-height: 1.5;
  font-weight: 700;
}
.tilemenu-subtitle-line {
  margin: 0;
  line-height: 1.5;
  padding-top: 5px;
  font-size: 0.8em;
}
.tilemenu-subtitle {
  margin-top: 0.5em;
  font-size: 1em;
  color: #444;
}
.tilemenu-empty {
  color: #666;
  margin: 0.5em 0;
  padding: 0 1em;
}
