
.booking-service  {
    min-height: 50px;
}
.booking-service svg {
    color: #fff;
    display: inline-block;
    margin-right: 12px;
}
/* speqmodal */
#speqmodal .modal-box {
    max-width: 680px;
    width: 100%;
}
.speq-modal-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 28px;
}
.speq-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}
.speq-card {
    position: relative;
    flex: 1;
    border: 1.5px solid #e0e4ef;
    border-radius: 14px;
    padding: 24px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    background: white;
    min-width: 140px;
    user-select: none;
}
.speq-card img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}
.speq-card-label {
    font-size: 17px;
    color: #2D5490;
    font-weight: 500;
}
.speq-card-check {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #4CAF50;
    border-radius: 50%;
    color: white;
    font-size: 13px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
}
.speq-card--selected {
    border-color: #4a7fd4;
    background: #EEF5FF;
}
.speq-card--selected .speq-card-check {
    display: flex;
}
.speq-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 8px;
}
/* petsmodal */
#petsmodal .modal-box {
    max-width: 880px;
    width: 100%;
}
#petsmodal .modal-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 20px;
    text-align: left;
}
#petsmodal .modal-body {
    max-height: 85vh;
    overflow-y: auto;
    padding: 0 4px 8px;
}
#pets-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.pets-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    background: #EBEBEB;
    color: #001D38;
    transition: background .15s, color .15s;

}

.pets-tab svg {
    color: #AFAFAF
}
.pets-tab--active {
    background: #D8F0FF;
    color: #2D5490;
}
.pets-tab--active svg {
    color: #2D5490
}
.pets-tab svg {
    flex-shrink: 0;
}
.pets-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f5f7fa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
}
.pets-card-img {
    width: 155px;
    min-width: 155px;
    height: 115px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.pets-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.pets-card-body {
    flex: 1;
    min-width: 0;
}
.pets-card-title {
    font-size: 16px;
    color: #000000;
    margin-bottom: 6px;
}
.pets-card-desc {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}
.pets-card-desc + .pets-card-desc {
    margin-top: 4px;
}
.pets-card-desc--gap {
    margin-bottom: 12px;
}
#pets-weights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pets-card-action {
    flex-shrink: 0;
    margin-left: auto;
}
.pets-select-btn {
    background: #2D5490;
    color: white;
    border: 1px solid #2D5490;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    min-width: 130px;
    white-space: nowrap;
    height: 40px;
}
.pets-select-btn--selected {
    background: white;
    color: #2D5490;
}
.pets-weight-btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #2D5490;
    background: white;
    color: #2D5490;
    font-size: 14px;
    cursor: pointer;
}
.pets-weight-btn--selected {
    background: #2D5490;
    color: white;
}
.pets-footer {
    text-align: right;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

