@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";
/* [project]/styles/globals.css [client] (css) */
body {
  color: #e2e8f0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%) fixed;
  min-height: 100vh;
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

h1, h2, h3 {
  color: #f8fafc;
  margin-top: 0;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.glass-panel {
  -webkit-backdrop-filter: blur(12px);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  box-shadow: 0 8px 32px #0000004d;
}

.header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  display: flex;
}

.title {
  background: linear-gradient(to right, #60a5fa, #c084fc);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

.nav-links {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.nav-link {
  color: #94a3b8;
  padding: .5rem 0;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.nav-link:hover, .nav-link.active {
  color: #60a5fa;
}

.btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-family: Inter, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  box-shadow: 0 4px 12px #3b82f64d;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #3b82f666;
}

.btn-primary:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.btn-outline {
  color: #e2e8f0;
  background: none;
  border: 1px solid #fff3;
}

.btn-outline:hover {
  background: #ffffff1a;
}

.btn-delete {
  color: #ef4444;
  background-color: #ef44441a;
  border: 1px solid #ef444433;
}

.btn-delete:hover {
  background-color: #ef444433;
}

.login-container {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  display: flex;
}

.login-card {
  width: 100%;
  max-width: 400px;
  padding: 2.5rem;
}

.login-card h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  color: #94a3b8;
  margin-bottom: .5rem;
  font-size: .9rem;
  display: block;
}

.form-control {
  color: #f8fafc;
  background: #0f172a99;
  border: 1px solid #ffffff1a;
  border-radius: 8px;
  width: 100%;
  padding: .75rem 1rem;
  font-family: inherit;
  transition: all .2s;
}

.form-control:focus {
  border-color: #60a5fa;
  outline: none;
  box-shadow: 0 0 0 2px #60a5fa33;
}

.error-text {
  color: #ef4444;
  text-align: center;
  margin-top: 1rem;
  font-size: .85rem;
}

.image-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  display: grid;
}

.image-card {
  background: #0f172a66;
  border: 1px solid #ffffff0d;
  border-radius: 12px;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s;
  display: flex;
  overflow: hidden;
}

.image-card:hover {
  border-color: #ffffff26;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px #0006;
}

.image-container {
  background: #0f172a;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 220px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-container img {
  object-fit: contain;
  background: #000;
  width: 100%;
  height: 100%;
}

.image-info {
  flex-direction: column;
  flex-grow: 1;
  padding: 1.25rem;
  display: flex;
}

.image-name {
  word-break: break-all;
  color: #f8fafc;
  margin-bottom: .5rem;
  font-size: .95rem;
  font-weight: 500;
}

.image-meta {
  color: #94a3b8;
  flex-grow: 1;
  margin-bottom: 1.25rem;
  font-size: .8rem;
}

.card-actions {
  justify-content: space-between;
  gap: .75rem;
  display: flex;
}

.card-actions .btn {
  padding: .5rem;
  font-size: .8rem;
}

.modal-overlay {
  z-index: 1000;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #0f172acc;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal-content {
  text-align: center;
  width: 90%;
  max-width: 450px;
  padding: 2.5rem;
}

.modal-actions {
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  display: flex;
}

.upload-container {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.dropzone {
  text-align: center;
  cursor: pointer;
  background: #0f172a66;
  border: 2px dashed #60a5fa80;
  border-radius: 16px;
  padding: 3rem;
  transition: all .3s;
}

.dropzone.dragover {
  background: #c084fc1a;
  border-color: #c084fc;
}

.dropzone p {
  color: #94a3b8;
  margin-bottom: 1rem;
}

.dropzone-icon {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.file-input {
  display: none;
}

.results-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 1rem;
}

.results-table th, .results-table td {
  text-align: left;
  border-bottom: 1px solid #ffffff1a;
  padding: 1rem;
}

.results-table th {
  color: #94a3b8;
  font-size: .9rem;
  font-weight: 500;
}

.results-table td {
  color: #f8fafc;
  font-size: .95rem;
}

.badge {
  border-radius: 9999px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
}

.badge-success {
  color: #4ade80;
  background: #22c55e33;
}

/*# sourceMappingURL=styles_globals_1sjip1h.css.map*/