/* Style dla select aby wyglądał jak text input */
#guest_of {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    border: 1px solid rgb(31, 60, 95);
    border-radius: 0;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

#guest_of:focus {
    outline: none;
    border-color: rgb(31, 60, 95);
    box-shadow: 0 0 0 0px rgb(31, 60, 95);
}

#guest_of option {
    padding: 8px 12px;
    background-color: white;
    color: #333;
}

