/* =============================================================================
   CD Asset Manager — styles.css
   ============================================================================= */

/* --- CD Logo ---------------------------------------------------------------- */

.cd-logo-large {
  width: 72px;
  height: 72px;
  background: #212529;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-logo-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  border-radius: 8px;
}

/* --- Login card ------------------------------------------------------------- */

.login-card {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
}

/* --- Upload zone ------------------------------------------------------------ */

.upload-zone {
  border: 2px dashed #dee2e6;
  background: #f8f9fa;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: #0d6efd;
  background: #e8f0fe;
}

.upload-zone.dragover {
  border-style: solid;
}

/* --- Upload queue ----------------------------------------------------------- */

.upload-queue-item {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
}

/* --- CDN výsledky ----------------------------------------------------------- */

.cdn-result-item {
  transition: background 0.2s;
}

.cdn-url-text {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
}

/* --- File table ------------------------------------------------------------- */

#fileTable tbody tr {
  transition: background 0.1s;
}

.filename-link {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.filename-link:hover {
  text-decoration: none !important;
}

.cdn-url-cell {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
}

/* --- Navbar ----------------------------------------------------------------- */

.navbar {
  min-height: 56px;
}

/* --- Scrollbar (webkit) ----------------------------------------------------- */

::-webkit-scrollbar        { width: 6px; height: 6px; }
::-webkit-scrollbar-track  { background: #f1f1f1; }
::-webkit-scrollbar-thumb  { background: #c1c1c1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a8a8a8; }

/* --- Utility ---------------------------------------------------------------- */

.min-w-0 { min-width: 0; }
