input::placeholder {
    color: #B0B0B2;
    font-size: 16px;
    font-weight: 700;
    font-family: inter;
}
.search-box {
    max-width: 750px;
    background: #fff;
    border-radius: 40px;
    padding: 15px 33px;
    box-shadow: 0 5px 20px #E0E7FF;
    margin: 0 auto;
}
.form-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.field{
    display:flex;
    align-items:center;
    gap:0px;
}
.field svg { 
    width: 24px;
    height: 24px;
}
.field input {
    border: none;
    outline: none;
    width: 100%;
    padding: 0px;
    padding-left: 10px;
    margin-top: 5px;
}

.field input::placeholder{
    color:#B0B0B2;
    font-family: inter;
    font-size: 16px;
    font-weight: 700;
    
}

.find-btn{
    background:#4f6df5;
    color:#fff;
    border:none;
    padding:10px 15px;
    border-radius:30px;
    font-weight:900;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:5px;
    box-shadow: 0 6px 9px #E0E7FF;
     font-family: inter;
     font-size: 12px;
}

.find-btn:hover{
    background:#3d57d8;
}
.field.ft-city {
    width: 150px;
}
.field.ft-date {
    width: 215px !important;
        position: relative;
}
div#ft-date-trigger {
    margin-left: 27px;
}
.field.ft-cats {
    width: 150px !important;
}
.field {
    position: relative;
}

.field svg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* 🔥 THIS IS THE MAIN FIX */
}

.field input {
    padding-left: 35px; /* space for icon */
}
/* Chrome, Edge, Safari */
#ft-input-date::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.ft-calendar {
    position: absolute;
    top: 60px;
    left: -185px;
    width: 712px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 999;
}

.ft-cal-grid-wrap {
    display: flex;
    gap: 50px;
    justify-content: center;
}

#ft-m1-title,
#ft-m2-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #1f2937;
}
.ft-dow {
    text-align: center;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
}

.ft-cal-grid-wrap .ft-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* MUST */
    gap: 8px;
}

 .ft-cal-grid-wrap div {
    width: 100%;
}

.ft-day {
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13px;
}

.ft-day:hover {
    background: #eef2ff;
}

.ft-day.start,
.ft-day.end {
    background: #4f46e5;
    color: #fff;
}

.ft-day.in-range {
    background: #e0e7ff;
    border-radius: 0;
}

.ft-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ft-cal-header button {
    border: none;
    background: #f3f4f6;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}
.ft-calendar * {
    box-sizing: border-box;
}
/* span#ft-start-display {
    font-size: 16px;
        color: #B0B0B2;
    font-weight: 700;
    font-family: inter;
}
span#ft-end-display {
    font-size: 16px;
     color: #B0B0B2;
    font-weight: 700;
    font-family: inter;
} */
div#ft-date-trigger span {
    font-size: 13px;
    color: #B0B0B2;
    font-weight: 700;
}


@media (max-width: 1402px){
    .search-box {
    max-width: 706px;
}
}
@media (max-width: 767px){
.field.ft-date {
    width: 100% !important;
  
}
    	
	input#ft-input-date {
    background: transparent !important;
    color: #000;
}
        .search-box {
        max-width: 100%;
        border-radius: 24px;
        padding: 20px 33px;
        box-shadow: 5px 12px 22px #E0E7FF;
        padding-top: 25px;
    }
    
.form-row {
    display: flex;
    align-items: baseline;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
}
button.find-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 18px 10px !important;
    font-size: 14px;
    flex-direction: row-reverse;
    gap: 13px;
}
    .ft-cal-grid-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .ft-calendar {
        width: 95vw;
        padding: 16px;
    }

    .ft-day {
        width: 32px !important;
        height: 32px;
        font-size: 12px;
    }
.ft-calendar {
    left: -41px;
 
}
}
