.residence-card input[type="radio"]{
  display: none;
}

.res-card{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  border: 2px solid #dee2e6;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.25s ease;
  background: #fff;
  height: 100%;
}

/* Hover */
.res-card:hover{
  border-color: #198754;
  background: #f0fff6;
}

/* Active */
.residence-card input[type="radio"]:checked + .res-card{
  border-color: #198754;
  background: #e9f7ef;
  box-shadow: 0 4px 12px rgba(25,135,84,.25);
}

/* Custom Radio */
.radio-circle{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid #198754;
  position: relative;
}

.residence-card input[type="radio"]:checked + .res-card .radio-circle::after{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #198754;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Text */
.res-card .text{
  font-weight: 600;
}


