/* Agenda Page Styles */
.agenda__wizard-wrap {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.agenda__progress {
  position: relative;
  margin-bottom: 40px;
}

.agenda__steps {
  display: flex;
  justify-content: space-between;
}

.agenda__steps .step {
  font-weight: 600;
  color: #999;
  padding-bottom: 10px;
  border-bottom: 3px solid #eee;
  flex: 1;
  text-align: center;
  transition: all 0.3s ease;
}

.agenda__steps .step.active {
  color: #1a73e8; /* Assuming a blue accent, change to matched theme if needed */
  border-bottom-color: #1a73e8;
}

.service-card {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 35px 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.service-card:hover,
.service-card.selected {
  border-color: #1a73e8;
  background: #f4f8ff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
  font-size: 45px;
  color: #1a73e8;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .icon,
.service-card.selected .icon {
  transform: scale(1.1);
  color: #002169;
}

.service-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: #002169;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 0;
}
.pet-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.pet-card:hover,
.pet-card.selected {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #1a73e8;
}

.pet__card__header {
  height: 140px;
  background: linear-gradient(135deg, #7b3e7f 0%, #002169 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pet__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid white;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.pet__wave {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: white;
  border-radius: 50% / 100% 100% 0 0;
}

.pet-card h5 {
  font-size: 20px;
  text-transform: capitalize;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #002169;
}

.badge-fertil {
  background: #28a745;
  color: white;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 12px;
}
.badge-castrado {
  background: #6c757d;
  color: white;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 12px;
}

.pet__stats {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 15px;
  margin: 15px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

.pet__stat-col {
  width: 50%;
  margin-bottom: 10px;
}
.pet__stat-col:nth-child(even) {
  padding-left: 10px;
  border-left: 1px solid #dee2e6;
}
.pet__stat-col.full {
  width: 100%;
  border-top: 1px solid #dee2e6;
  padding-top: 10px;
  padding-left: 0;
  border-left: none;
}

.pet__stat-label {
  font-size: 10px;
  color: #adb5bd;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
}

.pet__stat-val {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.btn-volver {
  background-color: #6c757d;
  color: white;
}
.btn-volver:hover {
  background-color: #5a6268;
  color: white;
}

/* Calendar & Slots */
.toggle-view-group .btn {
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
}
.toggle-view-group .btn.active {
  box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.day-card {
  background: white;
  border-radius: 15px;
  border: 2px solid #eee;
  padding: 15px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.day-card.disabled {
  background: #f8f9fa;
  color: #adb5bd;
  cursor: not-allowed;
  border-color: #f1f3f5;
}
.day-card.disabled h5 {
  color: #adb5bd;
}
.day-card:not(.disabled):hover,
.day-card.selected {
  border-color: #1a73e8;
  background: #f4f8ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}
.day-card .day-name {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: #6c757d;
  margin-bottom: 5px;
}
.day-card .day-date {
  font-size: 24px;
  font-weight: 800;
  color: #002169;
  margin-bottom: 5px;
}
.day-card .day-slots {
  font-size: 12px;
  color: #28a745;
  font-weight: 600;
}

.slot-card {
  background: white;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.slot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background: #1a73e8;
  transition: width 0.3s ease;
}
.slot-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: #1a73e8;
}
.slot-card:hover::before {
  width: 8px;
}
.slot-card .slot-time {
  font-size: 20px;
  font-weight: 800;
  color: #002169;
  margin-bottom: 5px;
}
.slot-card .slot-doctor {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 5px;
}
.slot-card .slot-box {
  font-size: 12px;
  color: #6c757d;
}
.slot-card.doctor-view .slot-date-badge {
  background: #e9ecef;
  color: #495057;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 5px;
  display: inline-block;
}
/* Carnet Module Specific */
.carnet-slot-final-btn {
  transition: all 0.3s ease !important;
}

.carnet-slot-final-btn:hover {
  background-color: #002169 !important;
  color: #ffffff !important;
  border-color: #002169 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 33, 105, 0.2) !important;
}

.carnet-slot-final-btn.selected {
  background-color: #8c61ff !important;
  color: #ffffff !important;
  border-color: #8c61ff !important;
  box-shadow: 0 8px 20px rgba(140, 97, 255, 0.4) !important;
}

#btn-carnet-prev-week:hover,
#btn-carnet-next-week:hover {
  background-color: #8c61ff !important;
  color: #ffffff !important;
  border-color: #8c61ff !important;
  transform: scale(1.1);
}
