/* ==============================
   USER PROFILE
================================ */

.profile-page {
  padding: 16px;
}

.profile-page .page-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-form label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-form input {
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.profile-form input:disabled {
  background: #f3f4f6;
  color: #6b7280;
}

.profile-form .btn-primary {
  margin-top: 12px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ==============================
   FIX DATE INPUT PICKER
================================ */

input[type='date'] {
  appearance: auto;
  -webkit-appearance: auto;
  background-color: #fff;
}

/* 👇 CLAVE: restaurar el icono del calendario */
input[type='date']::-webkit-calendar-picker-indicator {
  display: block;
  opacity: 1;
  cursor: pointer;
}

/* ==============================
   RESTORE DATE INPUT NATIVE UI
================================ */

input[type='date'] {
  all: revert;
  box-sizing: border-box;
  padding: 6px 10px;
  font-size: 14px;
}
