.smp-form{
    display:flex;
    flex-wrap:nowrap;
    gap:12px;
    align-items:center;
    justify-content:flex-start;
    flex-direction:row;
    width:100%;
}
.smp-form input[type=text],
.smp-form select{
    padding:10px;
    border:1px solid #e3e3e3;
    border-radius:6px;
    min-width:150px;
    box-sizing:border-box;
}
.smp-menu{
    display:flex;
    gap:10px;
    align-items:center;
    flex-wrap:nowrap;
}
.smp-menu label{
    font-size:13px;
    display:flex;
    gap:6px;
    align-items:center;
    white-space:nowrap;
}
.smp-submit{
    padding:10px 16px;
    border:none;
    background:#1a73e8;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
}
.smp-msg{
    width:100%;
    margin-top:8px;
    color:#155724;
    background:#f1f8f4;
    padding:8px;
    border-radius:6px;
    display:none;
}
@media(max-width:900px){
    .smp-form{flex-wrap:wrap;}
    .smp-menu{flex-wrap:wrap;}
}
