/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  color: #1f2937;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-gap: 16px;
  gap: 16px;
  align-items: start;
}

.panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
}

.source-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 16px;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.source-list {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
}

.source-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  background: #fff;
}

.source-item.active {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px #2563eb inset;
}

.source-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
}

.source-logo-fallback {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #dbeafe;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.source-label {
  font-size: 13px;
  line-height: 1.2;
}

.install-panel {
  margin-bottom: 12px;
}

.install-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.live-message {
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.freshness-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.freshness-pill {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  border: 1px solid #c7d2fe;
}

select,
input,
button {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
}

.jobs-grid {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
}

.job-card h3 {
  margin: 0 0 10px;
}

.meta {
  margin: 5px 0;
}

.company-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.company-logo {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
}

.btn {
  margin-top: 12px;
  background: #2563eb;
  color: #fff;
  border: none;
  cursor: pointer;
}

.badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e0e7ff;
  color: #1e40af;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.skeleton {
  width: 100%;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
  background-size: 400% 100%;
  animation: shimmer 1.3s ease infinite;
  border-radius: 8px;
}

.skeleton-title {
  height: 22px;
  margin-bottom: 14px;
}

.skeleton-line {
  height: 14px;
  margin-bottom: 10px;
}

.skeleton-line.short {
  width: 60%;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (max-width: 980px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .source-sidebar {
    position: static;
    max-height: none;
  }

  .source-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .install-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


