﻿ul li p {
    font-weight: 500;
}

.white-space {
    white-space: normal
}

.tjsp-peticionamento-blue {
    color: #4D4C7A;
}

.tjsp-peticionamento-card-title {
    padding: 23px 0 12px 0;
    font-size: 17px;
}

.tj-peticionamento-labelList {
    list-style-type: none;
    margin-left: -18px;
    font-weight: bold;
}

.tj-toggle1 {
list-style: none !important;
font-weight: bold;
}

.no-margin-bottom {
    margin-bottom: 0px; /* Reduz a distância entre o título e os links */
}

.margin-left-10 {
    margin-left: 10px;
}

.no-padding {
    padding: 0;
}

.font-normal {
    font-weight: normal;
}

.font-bold {
    font-weight: bold;
}

.bullet::before {
    content: "•"; /* Bolinha manual */
    color: black;
    font-size: 16px;
    margin-right: 5px;
    text-decoration: none; /* Remove qualquer sublinhado da bolinha */
    display: inline-block; /* Garante que o estilo seja aplicado corretamente */
}

.flex-container {
    display: flex;
    gap: 7px; /* Espaço entre os links */
    align-items: center;
    flex-wrap: wrap;
}

    .flex-container a {
        text-decoration: underline;
        color: #4D4C7A;
        font-weight: 500;
    }



/* Container principal do Select2 */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: none;
    border-radius: 6px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    font-size: 16px;
}

    /* Remove a borda ao focar */
    .select2-container--default .select2-selection--single:focus {
        outline: none;
        border: none;
    }

    /* Texto do select */
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #333;
        line-height: 40px;
        padding-left: 10px;
    }

    /* Ícone da seta personalizada */
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        background-color: #52547a; /* Cor do fundo da seta */
        border-radius: 0 6px 6px 0;
        padding: 10px;
        height: 100%;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: white transparent transparent transparent !important; /* Cor branca para a seta */
            border-width: 6px 6px 0 6px !important;
        }
