/* estimate-form */
.estimate-form {
    width: 90%;
    /* height: 100%; */
    padding-top: 5%;
    /* margin: 5%; */
    margin: 0 auto;
    
}

/* profile */
.profile {
    position: relative;
    margin: 5vh 0;
    background-color: var(--color-white1);

    p {
        margin: 0;
        font-size: var(--font-size-sm);
    }

      @media (min-width: 650px) {
        background-color: initial;
      }
}

.profile img {
    position: absolute;
    z-index: 15;
    left: 5%;
    bottom: 0px;
}

.profile-button {
    position: relative;
    background-color: var(--color-white1);
    border: 1px solid var(--color-orange2);
    border-radius: 11px;
    color: var(--color-black1);
    width: 100%;
    height: 3rem;
}
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px; /* 카드와 맞춰야함 */
  color: white;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  pointer-events: none; /* 선택 방지 (버튼 클릭 막힘 방지용) */
}

.overlay-text {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.custom-card {
  width: 100%;
  aspect-ratio: 5 / 6;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 24px;
  /* 사이 간격용 */
  margin-right: 12px;
  margin-left: 12px;
}

.relative-wrapper {
  position: relative !important;
  display: inline-block !important;
}

.custom-filter-popup {
  position: absolute;
  top: 118% !important;
  left: -180px !important;
  z-index: 20 !important;
  width: 480px !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  background-color: white !important;
  padding: 16px !important;
}
.filter-tag {
  background-color: white !important;
  color: #ff7700 !important;
  border: 1px solid #ff7700 !important;
  border-radius: 20px !important;
  padding: 4px 10px !important;
  font-size: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
}
