/* [project]/styles/globals.css (css) */
:root {
  --green-600: #0f9d58;
  --green-500: #34a853;
  --green-400: #66bb6a;
  --bg: #f6fff8;
  --muted: #6b7280;
  --card: #ffffff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg), #eefaf1);
  color: #0f172a;
}
.header {
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
  color: white;
  padding: 16px 24px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}
.site-title {
  font-weight: 700;
  font-size: 20px;
}
.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}
.button {
  background: var(--green-600);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.link {
  color: white;
  text-decoration: none;
}
.card {
  background: var(--card);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(16, 24, 40, 0.06);
}
.footer {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.profile-dropdown {
  position: relative;
}
.profile-button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.profile-button:hover {
  background: rgba(255, 255, 255, 0.3);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
}
.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 14px;
}
.dropdown-item:hover {
  background: #f1f5f9;
}
.dropdown-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 8px 0;
}
.file-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.file-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.file-name {
  font-weight: 600;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.file-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.button-sm {
  padding: 6px 10px;
  font-size: 13px;
  background: var(--green-500);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.button-sm:hover {
  background: var(--green-600);
}
.button-danger {
  background: #ef4444;
}
.button-danger:hover {
  background: #dc2626;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-content {
  background: white;
  border-radius: 12px;
  padding: 24px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-content h3 {
  margin-top: 0;
}
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}
select, 
input {
  font-family: inherit;
}
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 300px);
  padding: 40px 20px;
}
.auth-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15, 157, 88, 0.15);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  border: 2px solid var(--green-400);
}
.auth-header {
  text-align: center;
  margin-bottom: 32px;
}
.auth-header h1 {
  margin: 0 0 12px 0;
  font-size: 28px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.auth-header p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}
.auth-form {
  display: grid;
  gap: 20px;
}
.form-group {
  display: grid;
  gap: 8px;
}
.form-group label {
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}
.form-group input {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(52, 168, 83, 0.1);
}
.auth-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.auth-message.error {
  background: #fee;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.auth-message.success {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}
.auth-button {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(15, 157, 88, 0.3);
}
.auth-button:hover {
  transform: translatey(-2px);
  box-shadow: 0 6px 20px rgba(15, 157, 88, 0.4);
}
.auth-button:active {
  transform: translatey(0);
}
.auth-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.auth-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}
.auth-footer p {
  color: var(--muted);
  margin: 0 0 8px 0;
  font-size: 14px;
}
.auth-link {
  color: var(--green-600);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.auth-link:hover {
  color: var(--green-500);
  text-decoration: underline;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}
.status-pending {
  background: #fef3c7;
  color: #92400e;
}
.status-downloaded {
  background: #d1fae5;
  color: #065f46;
}
.status-skipped {
  background: #e5e7eb;
  color: #374151;
}
.inbox-item .file-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 720px) {
  .container {
    padding: 16px;
  }
  .site-title {
    font-size: 18px;
  }
  .file-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .file-actions {
    width: 100%;
  }
  .modal-content {
    padding: 16px;
  }
}


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