.guest-selector {
    position: relative;
    width: 220px;
    margin: 2px auto;
}

.guest-btn {
    width: 100%;
    padding: 14px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guest-btn:focus {
    outline: none;
    border-color: #ff5a5f;
}

.guest-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 8px;
    z-index: 1000;
}

.guest-dropdown.show {
    display: block;
}

/* Rest of your previous styles (guest-item, counter, done-btn) remain same */
.guest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.guest-item:last-child { border-bottom: none; }

.guest-info h4 { font-size: 16px; margin: 0; }
.guest-info p { font-size: 13px; color: #666; margin: 2px 0 0 0; }

.counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter button {
    width: 36px;
    height: 36px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.counter span {
    font-size: 18px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.done-btn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #ff5a5f;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.form-field {
  position: relative;
}

.form-field .icon {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.form-field input {
  position: relative;
  z-index: 2;
}