.formDistribuir {
    font-family: 'Roboto', sans-serif;
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #f1f4fb;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    height: 400px;
    overflow-y: auto;
}

#principal{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
}

.distribuiOS__titulo {
    font-size: 1.2rem;
    font-weight: 500;
    color: #003bfc;
    margin-bottom: 1rem;
    display: block;
}

.alerta {
    background-color: #e6f4ea;
    border: 1px solid #80e12b;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #2d5f00;
}

.alerta strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.formDistribuir__lista {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.formDistribuir__lista__li {
    background-color: #fff;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.formDistribuir__lista__li input[type="checkbox"] {
    transform: scale(1.2);
}

select {
    width: 100%;
    padding: 0.6rem;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.distribuiOS {
    background-color: #003bfc;
    color: white;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.distribuiOS:hover {
    background-color: #002bb5;
}

/* Responsivo */
@media (max-width: 768px) {
    .formDistribuir__lista__li {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.9rem;
    }

    .distribuiOS {
        width: 100%;
    }

    select {
        font-size: 0.95rem;
    }
}
