@charset "UTF-8";
/* 🌍 Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === FLEX LAYOUT === */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background: #F7F9FB;
}
@media (min-width: 992px) {
  body {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-areas: "sidebar main";
  }
}

/* === MAIN LAYOUT === */
.main {
  flex: 1;
  grid-area: main;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* === TOPBAR === */
.topbar {
  height: 60px;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #E1E4EA;
  align-items: center;
  padding: 0 1.5rem;
  flex-shrink: 0;
}
.topbar__left {
  display: flex;
  align-items: center;
}
.topbar__title {
  font-weight: 600;
  color: #1C1C1C;
}
.topbar__user {
  font-size: 0.9rem;
  color: #555;
}
.topbar__client-switcher {
  flex-grow: 1;
  text-align: center;
  margin: 0 1rem;
}
.topbar__client-switcher select {
  padding: 0.4rem 0.8rem;
  border: 1px solid #444;
  border-radius: 6px;
  background-color: #333;
  color: #fff;
  max-width: 350px;
}
.topbar .client-switcher-form {
  margin: 0;
}

.mobile-nav-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 1rem;
  color: #fff;
}
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

/* === CONTENT === */
.content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  background: #F7F9FB;
}
@media (max-width: 767px) {
  .content {
    padding: 0.2rem;
  }
}

.sidebar {
  background: #2B3A4E;
  color: #FFFFFF;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  position: fixed;
  left: -280px;
  top: 0;
  bottom: 0;
  width: 280px;
  padding: 1rem 0.5rem;
  transition: left 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .sidebar {
    grid-area: sidebar;
    position: static;
    left: 0;
    height: 100vh;
    box-shadow: none;
  }
}
.sidebar__header {
  font-weight: 700;
  font-size: 1.4rem;
  color: #2E7BCC;
  margin-bottom: 1rem;
  text-align: center;
}
.sidebar__group {
  position: relative;
}
.sidebar__item, .sidebar__item-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 1rem);
  height: 48px;
  margin: 0.25rem 0.5rem;
  padding: 0 0.75rem;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 1.3rem;
  text-decoration: none;
  transition: background 0.2s;
}
.sidebar__item:hover, .sidebar__item-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.sidebar__item.active, .sidebar__item-toggle.active {
  background: #2E7BCC;
}
.sidebar__item-toggle {
  cursor: pointer;
}
.sidebar__label {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.95rem;
}
.sidebar__footer {
  margin-top: auto;
  font-size: 0.8rem;
  opacity: 0.6;
  padding-bottom: 0.5rem;
  text-align: center;
}
.sidebar__submenu {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0.5rem 0.5rem 2.5rem;
}
.sidebar__submenu a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}
.sidebar__submenu a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.sidebar__submenu a.active {
  background: #2E7BCC;
  color: #FFFFFF;
  font-weight: 500;
}
.sidebar__submenu-toggle {
  display: none;
}
.sidebar__submenu-toggle:checked ~ .sidebar__submenu {
  display: block;
}
.sidebar__submenu-toggle:checked ~ .sidebar__item-toggle .sidebar__chevron {
  transform: rotate(90deg);
}
.sidebar__chevron {
  margin-left: auto;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s;
}
.sidebar.sidebar-visible {
  left: 0;
}

.actions-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.actions-group form {
  margin: 0;
  padding: 0;
}

.log-output {
  background-color: #2d2d2d;
  color: #f1f1f1;
  padding: 1rem;
  border-radius: 10px;
  max-height: 400px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: monospace;
  font-size: 0.9rem;
}

.layout-split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .layout-split {
    grid-template-columns: 1fr 1fr;
  }
}
.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.input-static {
  padding: 10px 12px;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: monospace;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #ffffff;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  text-align: center;
}
.btn:hover {
  background-color: #f9fafb;
  border-color: #adb5bd;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.15);
}
.btn--primary {
  background-color: #2E7BCC;
  border-color: #2E7BCC;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #2563a3;
  border-color: #2563a3;
}
.btn--danger {
  background-color: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}
.btn--danger:hover {
  background-color: #dc2626;
  border-color: #dc2626;
}
.btn--small, .btn--download {
  padding: 0.3rem 0.7rem;
  font-size: 0.85rem;
}
.btn--small .icon, .btn--download .icon {
  font-size: 1.2em;
}

.btn--icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.1em;
  line-height: 1;
  vertical-align: middle;
  text-decoration: none; /* Přidáno pro konzistenci */
  background: 0;
  border: 0;
}

.btn--download {
  padding: 0.3rem 0.6rem;
  min-width: 40px;
  font-weight: 600;
  font-size: 0.8rem;
}

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #F7F9FB;
  font-family: "Inter", system-ui, sans-serif;
}

.login-box {
  background: #FFFFFF;
  padding: 2rem 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(28, 28, 28, 0.1);
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.login-box h2 {
  color: #2E7BCC;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.login-box input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #E1E4EA;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Inter", system-ui, sans-serif;
  transition: border-color 0.2s;
}
.login-box input:focus {
  border-color: #2E7BCC;
  outline: none;
}
.login-box button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  background: #2E7BCC;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s;
}
.login-box button:hover {
  background: rgb(39.4312, 105.4356, 174.8688);
}
.login-box .error {
  background: rgb(234.1, 223.8, 231.9);
  color: #a70000;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.dashboard__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #334155;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=password],
.form-group input[type=url],
.form-group input[type=number],
.form-group input[type=date],
.form-group input[type=color],
.form-group input[type=tel],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #E1E4EA;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: "Inter", system-ui, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #fff;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=password]:focus,
.form-group input[type=url]:focus,
.form-group input[type=number]:focus,
.form-group input[type=date]:focus,
.form-group input[type=color]:focus,
.form-group input[type=tel]:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2E7BCC;
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 123, 204, 0.15);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.bulk-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  margin-top: 1.5rem;
  background-color: #f9fafb;
  border-top: 1px solid var(--color-border, #e5e7eb);
}

.file-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.file-input-wrapper input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 110px;
  height: 100%;
  cursor: pointer;
}
.file-input-wrapper .btn {
  flex-shrink: 0;
}
.file-input-wrapper .file-name {
  font-size: 0.9rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.file-input-wrapper input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 110px;
  height: 100%;
  cursor: pointer;
}
.file-input-wrapper .btn {
  flex-shrink: 0;
}
.file-input-wrapper .file-name {
  font-size: 0.9rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.topbar__title {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.topbar__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.topbar__logout {
  color: #ff6b6b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.topbar__logout:hover {
  color: #ff3b3b;
  text-decoration: underline;
}

/* === DASHBOARD === */
.dashboard {
  padding: 2rem;
  color: #2B3A4E;
  /* === CARDS === */
  /* === TABLE === */
  /* === VERSION BADGE (optional) === */
}
.dashboard__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2E7BCC;
}
.dashboard__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.dashboard__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dashboard__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.dashboard__card-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: #2E7BCC;
}
.dashboard__card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dashboard__card-value {
  font-size: 1.8rem;
  font-weight: 700;
}
.dashboard__card-label {
  font-size: 0.9rem;
  color: #666;
}
.dashboard .dashboard__table td {
  vertical-align: middle;
  font-size: 0.95rem;
  color: #2b3a4e;
}
.dashboard .dashboard__table .badge {
  min-width: 80px;
  text-align: center;
}
.dashboard .dashboard__section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2E7BCC;
  margin-bottom: 1rem;
}
.dashboard__section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin: 0 0 2rem;
}
@media (max-width: 767px) {
  .dashboard__section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.dashboard__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.dashboard__table th, .dashboard__table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.dashboard__table th {
  background: #f9fafc;
  color: #555;
  font-weight: 600;
  font-size: 0.9rem;
}
.dashboard__table tr:hover td {
  background: #f5f7fa;
}
.dashboard__version {
  text-align: right;
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
}

/* Responsive tweak */
@media (max-width: 600px) {
  .dashboard {
    padding: 1rem;
  }
  .dashboard__cards {
    gap: 1rem;
  }
}
.utm-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.result-box {
  background: #f0f4f8;
  border: 1px solid #d1dce5;
  border-radius: 8px;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
}
.result-box__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.result-box__url {
  display: block;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-family: monospace;
  word-break: break-all;
  color: #2E7BCC;
  min-height: 40px;
  line-height: 1.5;
}

.color-picker-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.color-picker-group input[type=color] {
  padding: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.color-picker-group input[type=text] {
  width: 120px;
}

.form-control--textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.test-widget {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 2rem;
}
.test-widget__messages {
  height: 300px;
  overflow-y: auto;
  padding: 1rem;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.test-widget__input-container {
  display: flex;
  border-top: 1px solid #ccc;
}
.test-widget__input {
  flex-grow: 1;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  background: transparent;
}
.test-widget__input:focus {
  outline: none;
}
.test-widget__msg {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 80%;
  line-height: 1.4;
}
.test-widget__msg--user {
  background: #e1fecf;
  align-self: flex-end;
}
.test-widget__msg--assistant {
  background: #f1f1f1;
  align-self: flex-start;
}

.qr-generator-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  grid-template-areas: "preview" "form";
}
@media (min-width: 992px) {
  .qr-generator-layout {
    grid-template-columns: 1fr 350px;
    grid-template-areas: "form preview";
  }
}

.qr-generator-preview {
  grid-area: preview;
  text-align: center;
}

.qr-generator-form {
  grid-area: form;
}

.qr-preview-box {
  background: #fff;
  border: 1px solid #e1e4ea;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}
.qr-preview-box img {
  max-width: 100%;
  height: auto;
  display: block;
}

.qr-preview-placeholder {
  border: 2px dashed #d1d5db;
  border-radius: 10px;
  padding: 4rem 2rem;
  color: #6b7280;
  background: #f9fafb;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .qr-preview-placeholder {
    padding: 2rem 1rem;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 500px) {
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
@media (min-width: 768px) {
  .card-grid--wide {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
.card-grid--single-column {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .card-grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-item {
  background-color: #fff;
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: var(--radius, 8px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.card-item__preview {
  background-color: #f9fafb;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-item__preview img {
  max-width: 100%;
  height: auto;
  display: block;
}
.card-item__body {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-item__title {
  font-weight: 600;
  word-break: break-word;
}
.card-item__subtitle {
  font-weight: 500;
  color: #333;
}
.card-item__description {
  font-size: 0.85rem;
  color: #6b7280;
  word-break: break-all;
}
.card-item__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: auto;
  padding-top: 10px;
}
.card-item__footer {
  padding: 10px 15px;
  border-top: 1px solid var(--color-border, #e5e7eb);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9fafb;
  gap: 8px;
}

.card-footer-start, .card-footer-end {
  display: flex;
  gap: 8px;
}

.card-footer-end {
  margin-left: auto;
}

.layout-split {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}
.layout-split__main {
  flex: 2 1 500px;
}
.layout-split__aside {
  flex: 1 1 300px;
}

.media-gallery {
  margin-top: 2rem;
}
.media-gallery h3 {
  margin-top: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.template-editor .editor-layout {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.template-editor .editor-panel {
  flex: 2;
  min-width: 0;
}
.template-editor .media-library-panel {
  flex: 1;
  min-width: 0;
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #eee;
}
.template-editor .sortable-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.template-editor .sortable-list li .drag-handle {
  cursor: grab;
  color: #aaa;
}
.template-editor .sortable-list li:active .drag-handle {
  cursor: grabbing;
}
.template-editor .item-thumbnail {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  background-color: #eee;
}
.template-editor .item-thumbnail--text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: #555;
}
.template-editor .item-details {
  flex-grow: 1;
}
.template-editor .item-name {
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.template-editor .item-text-content {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}
.template-editor .item-duration, .template-editor .item-infolayer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.9em;
}
.template-editor .item-duration input[type=number], .template-editor .item-infolayer input[type=number] {
  width: 60px;
}
.template-editor .item-delete {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.5rem;
}
.template-editor .item-delete:hover {
  color: #d9534f;
}
.template-editor #empty-list-placeholder {
  text-align: center;
  padding: 2rem;
  border: 2px dashed #ddd;
  border-radius: 8px;
  color: #888;
}

.table--kiosk-dashboard th, .table--kiosk-dashboard td {
  vertical-align: middle;
}
.table--kiosk-dashboard td:first-child, .table--kiosk-dashboard th:first-child {
  width: 40px;
  text-align: center;
}

.uid-code {
  cursor: pointer;
  padding: 0.2em 0.4em;
  background-color: #f0f0f0;
  border-radius: 3px;
  transition: background-color 0.2s, color 0.2s;
}
.uid-code:hover {
  background-color: #e0e0e0;
}
.uid-code.copied {
  background-color: #28a745;
  color: white;
}

.table--kiosk-dashboard td:last-child, .table--kiosk-dashboard th:last-child {
  text-align: right;
}
.table--kiosk-dashboard td:last-child .btn, .table--kiosk-dashboard th:last-child .btn {
  margin-left: 0.5rem;
}

.bulk-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.media-grid .media-item {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.media-grid .media-item img, .media-grid .media-item video {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.media-grid .media-item .media-name {
  display: block;
  padding: 0.5rem;
  font-size: 0.85em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #f9f9f9;
}

.tool-box {
  max-width: 700px;
  margin-top: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.password-generator-box input {
  width: 100%;
  font-family: "Courier New", Courier, monospace;
  font-size: 1.5rem;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  margin-bottom: 1.5rem;
}
.password-generator-box .password-generator-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
}
.stat-item__value {
  font-size: 2rem;
  font-weight: bold;
  color: #2E7BCC;
}
.stat-item__label {
  font-size: 0.9rem;
  color: #666;
}/*# sourceMappingURL=main.css.map */