/* LiteImage Admin Flat Styles */

.liteimage-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px;
  margin-bottom: 24px;
}

.liteimage-flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.liteimage-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #23282d;
}

.liteimage-section-header {
  margin: 24px 0 12px 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 1.15rem;
}

.liteimage-progress {
  background: #e5e5e5;
  border-radius: 8px;
  height: 16px;
  margin-bottom: 8px;
  overflow: hidden;
}
.liteimage-progress-bar {
  height: 100%;
  background: linear-gradient(90deg,#0073aa,#00b9eb);
  border-radius: 8px;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}

.liteimage-stats {
  display: flex;
  gap: 32px;
}
.liteimage-stat {
  flex: 1 1 160px;
  text-align: center;
  padding: 30px 0;
  border-radius: 6px;
  background: #f5f5f5;
  font-size: 1.2rem;
}
.liteimage-stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0073aa;
}

.liteimage-tab-nav {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 28px;
}
.liteimage-tab-link {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #0073aa;
  padding: 12px 28px 11px 28px;
  margin: 0 2px;
  cursor: pointer;
  font-weight: 500;
  transition: border 0.2s;
}
.liteimage-tab-link.active {
  border-color: #0073aa;
  color: #23282d;
}

.button.liteimage-button {
  background: #00b9eb;
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.button.liteimage-button:hover {
  background: #0073aa;
}

.liteimage-log-list {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 18px 16px;
  max-height: 270px;
  overflow: auto;
  font-size: 0.98rem;
  font-family: monospace;
  color: #222;
  margin-bottom: 12px;
}
.liteimage-log-clear {
  margin-bottom: 12px;
  display: inline-block;
}
.liteimage-section-management {
  margin: 60px 0;
}
.liteimage-section-management-form {
  display: flex;
  gap: 12px;
}
.liteimage-stat-grid {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
/* Responsive tweaks */
@media (max-width: 600px) {
  .liteimage-flex-row { flex-direction: column; gap: 14px; }
  .liteimage-stats { flex-direction: column; gap: 8px; }
  .liteimage-section-management { margin: 30px 0; }
  .liteimage-section-management-form { flex-direction: column; gap: 8px; }
}
