.panel li, .panel .item-title {
    color: white;
}

.icon-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    /* Cor verde do WhatsApp */
    border-radius: 30%;
    /* Faz o chip circular */
    width: 30px;
    /* Ajuste o tamanho conforme necessário */
    height: 30px;
    /* Ajuste o tamanho conforme necessário */
    margin-left: .25rem;
}

.icon-chip i {
    color: #fff;
    /* Cor do ícone */
    font-size: 16px;
    /* Tamanho do ícone */
}

.item-input-outline:focus {
    border-radius: 50px;
}

.item-inner .block {
    margin: 0;
    padding: 0;
}

.chip-label {
    font-size: x-small;
}

.item-title-row {
    margin-top: .35rem;
}

.item-title-row .item-title {
    font-weight: bolder;
}

.label-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.625rem;
}

.item-data {
    font-size: 12px;
    color: gray;
    white-space: nowrap;
    /* Para garantir que o horário não quebre em múltiplas linhas */
}

.label {
    background-color: #c03c13;
    color: #fff;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: .5rem;
}

.bottom-card-ticket {
    gap: .25rem;
    align-items: end;
}

.retorno-etiqueta-hoje {
    background-color: #d16240;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: .5rem;
}

/* SELECT TESTE RESPONSAVEL */
.custom-select select {
    /* Reset Select */
    appearance: none;
    outline: 10px red;
    border: 0;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: black;
    background-color: #f4edff;
    background-image: none;
    cursor: pointer;
}

.custom-select {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 3em;
    padding: 0;
    border-radius: .25em;
    overflow: hidden;
}

.custom-select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    background-color: #250048;
    transition: .25s all ease;
    pointer-events: none;
    color: #f4edff;
}