.add-dog-wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 1.3rem;
    padding-bottom: 1.4rem;
}

/* Tom Select clear button styling */
.add-dog-wrapper .ts-control .clear-button {
    font-size: 1.2rem;
    width: 21px;
    height: 21px;
    text-align: center;
    border-radius: 50%;
    background-color: #c0c0c0 !important;
    color: #fff;
    margin-right: 6px !important;
    padding-bottom:7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

/* Remove gap/cursor space after selection */
.add-dog-wrapper .ts-control input[type="text"] {
    width: auto;
    min-width: 1px;
    padding: 0;
    margin: 0;
    border: none;
    font-size: 1.15rem;
    line-height: 1.15rem;
    transform: translateY(-2px);
}

/* Line-style Tom Select control */
.add-dog-wrapper .ts-control {
    border: none;
    border-bottom: 2px solid #ced4da;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    padding: 0.35rem 0;
    padding-left: 0;
}

/* Focus state with cyan color */
.add-dog-wrapper .ts-control.focus,
.add-dog-wrapper .ts-control:focus-within {
    border-bottom-color: var(--yappy-cyan);
}

/* Line style for search input inside dropdown */
.add-dog-wrapper .ts-dropdown .dropdown-input {
    border: none;
    border-bottom: 2px solid #ced4da;
    background: transparent;
    border-radius: 0;
    padding-left: 0;
}

/* Remove gap between control and dropdown */
.add-dog-wrapper .ts-dropdown {
    margin-top: 0;
    border-top: none;
}

/* Yappy font & larger size */
.add-dog-wrapper .ts-control,
.add-dog-wrapper .ts-dropdown,
.add-dog-wrapper .ts-dropdown .option,
.add-dog-wrapper .ts-control input[type="text"],
.add-dog-wrapper .ts-control .item {
    font-family: "gilroymedium", "Century Gothic", "Futura", sans-serif;
    font-size: 1.1rem;
    line-height: 1.2;
}

/* Mobile Optimisations */
.add-dog-wrapper .ts-control,
.add-dog-wrapper .ts-dropdown {
    font-size: 15px; /* Prevents mobile zoom on tap */
    padding: 12px;
}
.add-dog-wrapper .ts-dropdown .option {
    padding: 14px 18px;
}
.add-dog-wrapper .ts-dropdown {
    max-height: 40vh;
    overflow-y: auto;
}

/* Yappy purple selection colors */
.add-dog-wrapper .ts-dropdown .active,
.add-dog-wrapper .ts-dropdown .option.active,
.add-dog-wrapper .ts-dropdown .option:hover {
    background-color: var(--yappy-cyan);
    color: #fff;
}

/* Pulse CTA animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 1s ease-in-out infinite;
}

#nextBtn {
    margin-top: 2rem !important;
}
