/* ============================
   Whisker Wellness — Option 1
   Calm & Professional Palette
   ============================ */

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background-color: var(--backgroundColor);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

/* Profile Styles */
.profile-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cat-profile {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reminder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.reminder-card {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reminder-card h3 {
    color: var(--primary);
    margin-top: 0;
}

.btn-secondary {
    background-color: #808080;
    color: var(--textColor);
}

/* Form Styles */
.profile-field {
    margin-bottom: 1rem;
}

.profile-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--headerColor);
}

.profile-field input,
.profile-field select,
.profile-field textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--primary);
    border-radius: 4px;
}

.profile-field textarea {
    min-height: 100px;
    resize: vertical;
}

.full-width {
    grid-column: 1 / -1;
}

/* Message Boxes */
.message-box {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    display: none;
}

.message-box.success {
    display: block;
    background-color: var(--success);
    color: white;
}

.message-box.error {
    display: block;
    background-color: var(--error);
    color: white;
}

/* Global  */
:root{
  /* Palette */
  --primary:#5CA4EF;          /* calm pastel blue */
  --primaryLight:#5CA4EF;      /* soft blue highlight */
  --success: #4CAF50;         /* green for success messages */
  --error: #f44336;          /* red for error messages */
  --secondary:#5CA4EF;         /* warm orange for CTAs */
  --secondaryLight:#26ac15;    /* lighter orange hover */
  --headerColor:#F49D37;       /* headings / strong text */
  --bodyTextColor:#444444;     /* paragraph text */
  --bodyTextColorWhite:#FFF8EE;
  --backgroundColor:#FFF8EE;   /* warm cream background */

  /* Type & layout */
  --topperFontSize:clamp(0.8125rem,1.6vw,1rem);
  --headerFontSize:clamp(1.9375rem,3.9vw,3.0625rem);
  --bodyFontSize:1rem;
  --sectionPadding:clamp(3.75rem,7.82vw,6.25rem) 1rem;
  --navHeight:64px;
}

*,
*:before,
*:after{ box-sizing:border-box; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--bodyTextColor);
  padding-top:var(--navHeight);   /* keep content below fixed header */

  /* Pattern + base color */
  background-image: url("face.png");
  background-repeat: repeat;
  background-size: 550px 450px; /* adjust size of paw tiles */
  background-position: top left;
  background-attachment: fixed;
  background-color: var(--backgroundColor);
}

/* Text helpers */
.cs-topper{
  font-size:var(--topperFontSize);
  line-height:1.2em;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:700;
  color:var(--secondary); /* subtle contrast vs primary */
  margin-bottom:.25rem;
  display:block;
}
.cs-title{
  font-size:var(--headerFontSize);
  font-weight:900;
  line-height:1.2em;
  max-width:43.75rem;
  margin:0 0 1rem 0;
  color:var(--headerColor);
}
.cs-text{
  font-size:var(--bodyFontSize);
  line-height:1.5em;
  max-width:40.625rem;
  margin:0;
  color:var(--bodyTextColor);
}

/*  Header / Hamburger  */
header.nav{
  position:fixed; top:0; left:0; right:0; height:var(--navHeight);
  background:var(--primary);                    /* toned-down header */
  backdrop-filter:saturate(150%) blur(4px);
  border-bottom:1px solid rgba(0,0,0,.06);
  z-index:1000;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  position: relative;   /* dropdown anchors here */
}
.nav-brand{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight:800;
  font-size: 1.75rem;
  color:#F49D37;
  text-decoration:none;
}

/* Show the favicon image to the left of the brand text */
.nav-brand::before{
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-image: url('https://as1.ftcdn.net/jpg/05/86/50/86/1000_F_586508675_p5LMVw9p5eC5Xa8rjPzyowrzZ0JOdpve.webp');
  background-size: contain;       /* ensures whole icon is visible without cropping */
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: -webkit-optimize-contrast; /* improve downscaling sharpness */
  border-radius: 6px;
}

.nav-toggle{
  width:44px; height:44px;
  display:inline-flex; align-items:center; justify-content:center; gap:4px;
  border:1px solid #e6e6e6; border-radius:10px; background:#fff; cursor:pointer;
}
.nav-toggle-bar{ display:block; width:22px; height:2px; background:#5CA4EF; }
.nav-toggle-bar:nth-child(2){ width:18px; }
.nav-toggle-bar:nth-child(3){ width:14px; }

/* Dropdown (slide-down) */
.nav-menu {
  position: absolute;
  top: calc(var(--navHeight) + 8px);
  right: 0;
  width: 240px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  padding: .5rem;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: max-height .25s ease, opacity .2s ease, transform .25s ease;
}
.nav-menu.is-open{
  max-height:500px; opacity:1; transform:translateY(0); pointer-events:auto;
}
.nav-link{
  display:block; padding:.75rem .875rem; margin:.125rem 0; border-radius:10px;
  color:#222; text-decoration:none; font-weight:600;
}
.nav-link:hover{ background:#f6f6f6; }

/*  Services (your cards)  */
@media only screen and (min-width:0rem){
  #services-448{ padding:var(--sectionPadding); }

  #services-448 .cs-container{
    width:100%; max-width:34.375rem; margin:auto;
    display:flex; flex-direction:column; align-items:center;
    gap:clamp(3rem,6vw,4rem);
  }

  #services-448 .cs-content{
    text-align:center; width:100%;
    display:flex; flex-direction:column; align-items:center;

    /* solid readable panel */
    background-color: var(--backgroundColor);
    padding: 1.75rem 2.25rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0,0,0,.05);
  }

  #services-448 .cs-card-group{
    width:100%; padding:0; margin:0;
    display:flex; flex-direction:column; justify-content:center; align-items:center;
    column-gap:clamp(3rem,5vw,5rem);
    row-gap:clamp(4rem,7vw,5rem);
  }

  #services-448 .cs-item{
    list-style:none; width:100%; max-width:32rem;  /* wider cards */
    padding-top:13rem; /* a bit taller */
    position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center;
  }

  #services-448 .cs-item:hover .cs-picture img{ transform:scale(1.2); opacity:.4; }
  #services-448 .cs-item:hover .cs-flex:before{ opacity:1; }

  #services-448 .cs-picture{
    width:100%; height:15.625rem; border-radius:.5rem;
    background-color:var(--primaryLight); /* subtle brand tint */
    overflow:hidden; display:block; position:absolute; top:0; left:0; z-index:-1;
  }
  #services-448 .cs-picture img{
    position:absolute; top:0; left:0; height:100%; width:100%;
    object-fit:cover; object-position:top; transition:transform .9s, opacity .5s;
  }

  #services-448 .cs-flex{
    text-align:center; width:88%; padding:0 1.5rem 1.5rem 1.5rem;
    border:1px solid #dad9e3; border-radius:.75rem; background:#FFF8EE;
    box-shadow:0 24px 54px rgba(87,107,147,.12);
    display:flex; flex-direction:column; justify-content:center; align-items:center; position:relative;
  }
  #services-448 .cs-flex:before{
    content:""; pointer-events:none; border:4px solid var(--primary); border-radius:.75rem;
    box-sizing:border-box; opacity:0; position:absolute; top:-1px; left:-1px; right:-1px; bottom:-1px;
    transition:opacity .5s;
  }

  #services-448 .cs-wrapper{
    width:clamp(5rem,9.2vw,7.5rem); height:clamp(5rem,9.2vw,7.5rem);
    margin:0 0 clamp(1.25rem,1.5vw,1.5rem);
    margin-top:calc(clamp(5rem,9.2vw,7.5rem) * -0.5);
    border-radius:50%; border:4px solid var(--primary); background:#fff;
    display:flex; justify-content:center; align-items:center; position:relative; z-index:10;
  }
  #services-448 .cs-icon{ width:clamp(3rem,4.3vw,4rem); height:auto; display:block; }
  #services-448 .cs-h3{
    font-size:clamp(1.25rem,1.9vw,1.5625rem); line-height:1.2em; font-weight:700;
    margin:0 0 .5rem 0; color:var(--headerColor);
  }
  #services-448 .cs-item-text{
    font-size:clamp(.875rem,1.5vw,1rem); line-height:1.5em; font-weight:400;
    margin:0 0 clamp(1.25rem,1.5vw,1.5rem);
    color:var(--bodyTextColor);
  }
  #services-448 .cs-link{
    font-size:clamp(1rem,1.5vw,1.25rem); line-height:1.5em; font-weight:700;
    text-transform:uppercase; text-decoration:none; color:var(--primary);
    display:inline-block; position:relative;
  }
  #services-448 .cs-link:hover:before{ width:100%; }
  #services-448 .cs-link:before{
    content:""; width:0%; height:3px; background:currentColor;
    position:absolute; bottom:-.125rem; left:0; transition:width .3s;
  }
}

/* Tablet */
@media only screen and (min-width:48rem){
  #services-448 .cs-container{ max-width:80rem; }
  #services-448 .cs-card-group{ flex-direction:row; }
  #services-448 .cs-item{ width:47%; }
}

/* Small Desktop */
@media only screen and (min-width:64rem){
  #services-448 .cs-card-group{ flex-wrap:nowrap; }
  #services-448 .cs-item{ width:32%; padding-top:clamp(11rem,18vw,18rem); }
  #services-448 .cs-picture{ height:clamp(18rem,32vw,30rem); } /* taller card images */
}

/*  Site Page Layout  */
.page { max-width: 1100px; margin: 3rem auto; padding: 0 1rem; }
.page-title { text-align: center; margin-bottom: 1.5rem; color: var(--headerColor); }
.row {
  display: grid;
  /* left column = title + text stacked; right column = image */
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  grid-auto-rows: auto;
  column-gap: 20px;   /* space between text and image */
  row-gap: .75rem;    /* space between title and text */
  align-items: start;
}
/* Put the title (left) on row 1, the text (center) on row 2, both in column 1 */
.row .col.left   { grid-column: 1; grid-row: 1; }
.row .col.center { grid-column: 1; grid-row: 2; }

/* Put the image (right) in column 2, spanning both rows */
.row .col.right  { grid-column: 2; grid-row: 1 / span 2; justify-self: end; }

/* small polish: tighten space under the section title */
.row .col.left h2 { margin-bottom: .25rem; }
/* collapsed state */
.row.is-collapsed .col.center,
.row.is-collapsed .col.right { display: none; }
.row.is-collapsed { grid-template-columns: 1fr; }  /* just the title visible */



.col.right img { width: 100%; height: auto; border-radius: 12px; }
.bullets { padding-left: 1.2rem; line-height: 1.7; }
/* Auth container and forms */
.auth-container {
  max-width: 420px;
  margin: 2rem auto;
  background-color: var(--backgroundColor);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--primary);
}

.auth-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1rem;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  padding: .5rem;
  font-size: 1.1rem;
  color: var(--bodyTextColor);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.auth-tab.active {
  color: var(--primary);
  opacity: 1;
  font-weight: 600;
  position: relative;
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.auth-title {
  color: var(--headerColor);
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  text-align: center;
}

.auth-form {
  display: grid;
  gap: .75rem;
}

.auth-form.hidden {
  display: none;
}

.auth-form input { 
  width: 100%; 
  padding: .6rem .75rem;
  border: 1px solid #ddd;
  border-radius: .5rem;
  font-size: 1rem;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(92, 164, 239, 0.1);
}

.btn { 
  display: inline-block; 
  padding: .6rem 1rem; 
  border-radius: .5rem;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
}

.btn:hover {
  background: var(--primaryLight);
}

/*  Header stacking context & active link  */
.nav { position: relative; z-index: 10; }
.nav-menu .active { font-weight: 700; text-decoration: underline; }

/* Hamburger lines + hover */
.nav-toggle {
  width: 44px; 
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  gap: 5px;
  border: 1px solid #ddd; 
  border-radius: 10px; 
  background: #FFF8EE; 
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  height: 2px; 
  background: #F49D37; 
  border-radius: 2px;
  transition: width 0.3s ease, background 0.3s ease;
}
.nav-toggle-bar:nth-child(1) { width: 22px; }
.nav-toggle-bar:nth-child(2) { width: 18px; }
.nav-toggle-bar:nth-child(3) { width: 14px; }
.nav-toggle:hover .nav-toggle-bar {
  width: 22px;
  background: var(--secondary); /* orange glow on hover */
}

/* ===== Login banner under cards ===== */
.cs-login-banner {
  width: 100%;
  margin-top: 3rem;            /* space ABOVE so it doesn’t touch cards */
  display: flex;
  justify-content: center;
}
.cs-login-inner {
  width: 100%;
  max-width: 70rem;            /* same max width as card row */
  background: #FFF8EE;
  border: 1px solid #dad9e3;
  border-radius: 1rem;         /* rounded corners */
  box-shadow: 0 12px 24px rgba(87,107,147,.12);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cs-login-copy h3 {
  margin: 0 0 .5rem 0;
  color: var(--headerColor);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
.cs-login-copy p {
  margin: 0;
  color: #555;
}
.cs-login-btn {
  display: inline-block;
  padding: .9rem 1.25rem;
  border-radius: .65rem;
  background: var(--secondary);   /* orange CTA */
  color: #FFF8EE;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}
.cs-login-btn:hover { filter: brightness(1.05); }

/* Stack on small screens */
@media (max-width: 48rem) {
  .cs-login-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Page-specific backgrounds ===== */

/* Default (Home & Login) use paws.png from earlier section */

/* Food page background */
body.page-food {
  background-image: url("https://media.istockphoto.com/id/1287215879/vector/cat-food-icons-set-outline-style.jpg?s=612x612&w=0&k=20&c=AkDgZq8GU5hJmLnS8-MziSKsfTheyYaiRIUFPHB1RKg=");
  background-repeat: repeat;
  background-size: 600px 600px;
  background-position: top left;
  background-attachment: fixed;
}

/* Maintenance page */
body.page-maintenance {
  background-image: url("main.png");
  background-repeat: repeat;
  background-size: 450px 300px;
  background-position: top left;
  background-attachment: fixed;
}

/* Activities page */
body.page-activities {
  background-image: url("play.png");
  background-repeat: repeat;
  background-size: 500px 400px;
  background-position: top left;
  background-attachment: fixed;
}
/* ===== Collapsible sections ===== */
.content-wrapper .row .col.left h2{
  cursor:pointer; position:relative; padding-right:1.25rem;
}
.content-wrapper .row .col.left h2::after{
  content:"▾"; position:absolute; right:.1rem; top:50%; transform:translateY(-50%) rotate(0deg);
  transition:transform .2s ease;
}
/* collapsed state */
.content-wrapper .row.is-collapsed .col.left h2::after{ transform:translateY(-50%) rotate(-90deg); }
.content-wrapper .row.is-collapsed{ grid-template-columns:1fr; padding: .75rem 0; }
.content-wrapper .row.is-collapsed .col.center,
.content-wrapper .row.is-collapsed .col.right{ display:none; }
/* Only make the header itself clickable */
.row .col.left {
  cursor: default;  /* normal cursor for the column */
}
.row .col.left h2 {
  cursor: pointer;  /* hand cursor only for the title text */
  display: inline-flex;
  align-items: center;
}
.row .col.left h2::after {
  margin-left: 6px;
}


/* === Collapsible Topic layout (shared across pages) === */
.topic {
  padding: 1.25rem 0;
  border-bottom: 2px solid var(--primary);
}
.topic:last-of-type { border-bottom: none; }

.topic-toggle {
  all: unset;
  display: inline-block;
  font-weight: 800;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--headerColor);
  position: relative;
  padding-right: 1.25rem;
}
.topic-toggle::after {
  content: '▾';
  position: absolute;
  right: 0;
  top: 0.1rem;
  font-size: 1rem;
  transition: transform .2s ease;
}
.topic[aria-expanded="false"] .topic-toggle::after { transform: rotate(-90deg); }

.topic-body { margin-top: .75rem; }
.topic[aria-expanded="false"] .topic-body { display: none; }

.topic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 1.25rem;
}
@media (max-width: 860px) {
  .topic-grid { grid-template-columns: 1fr; }
}

.topic-text {
  font-size: 1rem;
  line-height: 1.6;
}
.topic-text .bullets { margin: .5rem 0 .75rem 1.25rem; }

.topic-images {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.topic-images img {
  width: 100%;
  height: auto;
  border-radius: .5rem;
  display: block;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* Reduce vertical spacing between images on the Activities page only */
body.page-activities .topic-images {
  gap: 1rem; /* smaller gap so images sit closer together on Activities */
}

/* Image modal / lightbox for zoomable images */
.image-modal { display:none; position:fixed; inset:0; z-index:2000; align-items:center; justify-content:center; }
.image-modal[aria-hidden="false"] { display:flex; }
.image-modal__overlay { position:fixed; inset:0; background:rgba(0,0,0,0.6); }
.image-modal__content { position:relative; max-width:95%; max-height:95%; margin:auto; z-index:2001; display:flex; align-items:center; justify-content:center; }
.image-modal__img { max-width:100%; max-height:100%; border-radius:.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.6); display:block; }
.image-modal__close { position:absolute; top:-12px; right:-12px; background:#fff; border-radius:50%; border:0; width:36px; height:36px; cursor:pointer; font-size:18px; box-shadow:0 4px 12px rgba(0,0,0,0.2); }
.image-modal__close:focus { outline:2px solid var(--primary); }

/* Make zoomable cursor indicate interactivity */
.zoomable { cursor: zoom-in; }
.image-modal__img { cursor: zoom-out; }

/* Non-bulleted variant for items that should look like bold labels + text */
.bullets.no-bullets { padding-left: 0; margin: 0; }
.bullets.no-bullets p { margin: 0 0 .6rem 0; line-height: 1.5; }
.bullets.no-bullets p strong { font-weight: 800; color: #000; }

/* Special heading style for highlighted section titles */
.bullets.no-bullets p strong.special-heading {
  color: var(--primary) !important;  /* site's blue theme color */
  font-size: 1.2rem;     /* 20% larger than normal text */
  font-weight: 800;      /* keep it bold */
}

/* Ensure <strong> used inside bulleted lists appears as dark/black and bold */
.topic-text .bullets li strong { color: #000; font-weight: 800; }

/* Important note styling used on Food page (centered, red title) */
.important-note { display:block; width:100%; text-align:center; margin: 1.5rem 0; }
.important-note__title { color: #c62828; /* red */ font-size: 1.25rem; margin: 0 0 .5rem 0; font-weight: 900; letter-spacing: .02em; }
.important-note__text { margin: 0 auto .85rem; max-width: 900px; line-height: 1.5; color: var(--bodyTextColor); }

/* When placed inside the topic grid, make the note span all columns so it is full-width and truly centered */
.topic-grid .important-note { grid-column: 1 / -1; padding: 1rem 1.25rem; box-sizing: border-box; }

/* Profile page styles */
.profile-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--backgroundColor);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.profile-info {
  flex: 1;
}

.profile-quick-info {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.info-label {
  font-weight: 600;
  color: var(--headerColor);
}

.info-value[contenteditable] {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  min-width: 100px;
  display: inline-block;
}

.info-value[contenteditable]:hover {
  background: rgba(92, 164, 239, 0.1);
}

.info-value[contenteditable]:focus {
  outline: 2px solid var(--primary);
  background: white;
}

.profile-sections {
  display: grid;
  gap: 2rem;
}

.profile-section {
  background: var(--backgroundColor);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-section h2 {
  color: var(--headerColor);
  margin-bottom: 1.5rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profile-field.full-width {
  grid-column: 1 / -1;
}

.profile-field label {
  font-weight: 600;
  color: var(--bodyTextColor);
}

.profile-field input,
.profile-field select,
.profile-field textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  width: 100%;
}

.profile-field textarea {
  min-height: 100px;
  resize: vertical;
}

.reminder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.reminder-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #eee;
}

.reminder-card h3 {
  color: var(--headerColor);
  margin-bottom: 1rem;
}

.reminder-settings {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reminder-settings label {
  font-weight: 500;
  color: var(--bodyTextColor);
}

.reminder-settings select,
.reminder-settings input {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 0.9rem;
}

.profile-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.btn-small {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Make the profile layout responsive */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .profile-quick-info {
    justify-content: center;
  }
  
  .reminder-grid {
    grid-template-columns: 1fr;
  }
}


