﻿.status-form {
    width: 300px;
    background-color: #fff;
    margin-top: 15px;
}

.status-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    /* Cambia el color según el estado */
    /*background-color: #34c759;*/ /* Verde para "activo" por ejemplo */
}

.status-label {
    flex-grow: 1;
    cursor: pointer;
    border: none !important;
    padding: 0;
    color: #495057 !important; /* Texto similar a Bootstrap */
    /*appearance: none;*/
    background-color: transparent;
    font-size: 15px;
    outline: none;
}
    /* Estilo de la flecha del select */
    .status-label::after {
        content: "▼";
        margin-left: 5px;
        font-size: 12px;
    }

    /* Estilo de las opciones del select */
    .status-label option {
        background-color: #fff;
    }