/* styles.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
  }

body {
    background-color: #f5f5f5;

    min-height: 100vh;
}

.header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.back-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
}

.location-card {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 16px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    border: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.location-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px !important;
    line-height: 1.4;
}

.pickup-btn {
    align-self: flex-end;
    /* Aligns button to the right */
    background-color: #FFF7F4;
    color: #ff5722;
    border: 1px solid #ff5722;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.pickup-btn:hover {
    background-color: #ff5722;
    color: #fff;
}

.branch-wrap {
    background: #F1F1F1;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 8px;
    width: 100%;
}


/* modal css */


.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    width: 580px !important;
    border-radius: 8px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.date-btn,
.time-btn {
    padding: 8px 12px;
    margin: 5px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    border: 0.5px #C9C9C9 solid;
    font-size: 14px;
}

.date-btn.selected,
.time-btn.selected {
    background-color: #fff;
    color: #000;
    border: 1px #000000 solid;
}

.confirm-btn {
    width: 100%;
    background-color: #ccc;
    color: #fff;
    cursor: not-allowed;
}

.confirm-btn.active {
    background-color: #000;
    cursor: pointer;
}

.heading-with-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.heading-with-value h5 {
    font-size: 14px;
    font-weight: 600;
}

#selectedDate,
#selectedTime {
    color: #FF5924;
    /* Optional: match selected color */
    margin-left: 10px;
    font-size: 14px;
    margin-bottom: 0px;
    background-color: #FFE3DA;
    padding: 4px 16px;
    border-radius: 8px;

}

.modal-head {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.modal-content .branch-wrap{
    margin-bottom: 16px;
}
.modal-content .branch-wrap h3 {
    font-size: 14px;
    font-weight: 600;

}

.modal-content .branch-wrap p {
    font-size: 14px;
    margin-bottom: 0px;
}

.date-selection ,.time-selection {
    margin-bottom: 8px;
}




.date-picker-field {
    padding: 6px 12px !important;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.date-picker-field:focus {
    outline: none;
    border-color: var(--grey-75);
}
.lcfooter{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .lcfooter .selected{
    font-weight: 600;
  }

  .location-card.active{
    border: 1px solid var(--orange);
  }