@charset "UTF-8";
body {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  background: #f0f2f5;
  margin: 0;
  padding: 0;
}
body .title {
  text-align: center;
  margin-bottom: 0;
  color: #ea6b0b;
  font-weight: bold;
}
body #peopleGrid .col-person {
  display: flex;
  margin-bottom: 15px;
}
body #peopleGrid .col-person .personTile {
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}
body #peopleGrid .col-person .personTile:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}
body #peopleGrid .col-person .personTile.selected {
  border: 2px solid #ea6b0b;
  background: rgba(234, 108, 11, 0.2470588235);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
body #peopleGrid .col-person .personTile.nextBirthday {
  position: relative;
}
body #peopleGrid .col-person .personTile.nextBirthday:before {
  content: "🎂";
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  line-height: 1;
}
body #peopleGrid .col-person .personTile img.face {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}
body #peopleGrid .col-person .personTile .personName {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1rem;
}
body #peopleGrid .col-person .personTile .dob,
body #peopleGrid .col-person .personTile .age {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}
body #relationshipModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
body #relationshipModal.hidden {
  opacity: 0;
  visibility: hidden;
}
body #relationshipModal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}
body #relationshipModal .modalContent {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: fadeIn 0.3s;
}
body #relationshipModal .modalContent .close {
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  top: -5px;
  right: 10px;
  font-size: 2em;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}
body #relationshipModal .modalContent h2 {
  margin: 0 0 15px;
  color: #ea6b0b;
}
body #relationshipModal .modalContent #modalNames {
  font-weight: bold;
  margin-bottom: 10px;
}
body #relationshipModal .modalContent #modalNames .modalPeople {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
body #relationshipModal .modalContent #modalNames .modalPeople img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
body #relationshipModal .modalContent #modalRelationship,
body #relationshipModal .modalContent #modalAgeDiff {
  margin-bottom: 5px;
  font-size: 1em;
  color: #333;
}
@keyframes fadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.next-birthday {
  background-color: lemonchiffon;
  padding: 0.25rem;
  border: 2px solid rgb(255, 244.9, 154);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 0.5rem;
}

.cake {
  font-size: 1.5rem;
}

.modalTitle {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
  background: #ea6b0b;
  display: inline-block;
  padding: 0.25em 0.25em 0.125em;
  line-height: 1;
  border-radius: 0.25em;
}

header {
  position: sticky;
  top: 0;
  background: white;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  z-index: 1;
}

footer {
  background: black;
  color: white;
  padding: 1em 0;
}
footer * {
  margin: 0;
  padding: 0;
}/*# sourceMappingURL=style.css.map */