/* DaylioX local overrides — used alongside Tailwind CDN */

/* Profile page components */
.profile-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}
.profile-sidebar, .profile-main {
  background: #fff;
}
.profile-file-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.profile-file-wrapper input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

/* Legacy button style */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  border-radius: .75rem;
  background: #3b82f6;
  color: #fff;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}
.button-primary:hover { background: #2563eb; }

/* Form defaults */
.input-default {
  width: 100%;
  padding: .75rem 1rem;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: .75rem;
  color: #0f172a;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input-default:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, .2);
  outline: none;
}

