/* Label Generator Light Theme - Dashboard Style with Teal Branding */

:root {
  --brand-teal: #7BCCC4;
  --brand-teal-hover: #6bb3ad;
  --brand-teal-light: rgba(123, 204, 196, 0.1);
  --brand-teal-border: rgba(123, 204, 196, 0.3);
}

body {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: var(--font-family);
  margin: 0;
  padding: 1.5rem;
  min-height: 100vh;
}

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

/* Header styling like dashboard */
h1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 600;
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.logo {
  background: var(--brand-teal);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

/* Info section styling like dashboard */
.info {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--brand-teal);
}

.info strong {
  color: var(--brand-teal);
}

/* Form styling like dashboard */
#labelForm {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.875rem;
}

input[type="text"] {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

input[type="text"]:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px var(--brand-teal-light);
}

input[type="text"]::placeholder {
  color: var(--text-muted);
}

.example, .title-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Button styling like dashboard */
.submit-btn {
  background: var(--brand-teal);
  border: 1px solid var(--brand-teal);
  color: white;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}

.submit-btn:hover {
  background: var(--brand-teal-hover);
  border-color: var(--brand-teal-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* Ensure clean spacing */
* {
  box-sizing: border-box;
}

/* Optional: Service card styling if we want to match dashboard exactly */
.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

.service-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
