.wrapper {
    width: 100vw;
    height: 110vh;
    /* background-image: url(../assets/img/darkblue3.jpg); */
    background-size: cover;
    background-color: #09101c;
}

.fi {
    vertical-align: middle;
}

.venda-liq {
    background-color: green;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 12px;
    text-align: center;
}

.dev-liq {
    background-color: #E73429;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 12px;
    text-align: center;
}

.subcat-cont {
    background-color: green;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 12px;
    text-align: center;
}

.orc-cont {
    background-color: green;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 12px;
    text-align: center;
}

.cliatd-cont {
    background-color: green;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 12px;
    text-align: center;
}

.pedidos-cont {
    background-color: green;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 12px;
    text-align: center;
}

.peddev-cont {
    background-color: green;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 12px;
    text-align: center;
}

.ticketmedio-cont {
    background-color: green;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 12px;
    text-align: center;
}

.categoria-cont {
    background-color: green;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 12px;
    text-align: center;
}

.clinovos-cont {
    background-color: green;
    color: white;
    width: fit-content;
    padding: 7px;
    border-radius: 12px;
    text-align: center;
}

.ruler {
    display: flex;
    gap: 10px;
}

.ruler2 {
    display: flex;
    gap: 10px;
}

.container {
    position: absolute;
    margin-left: 440px !important;
    margin-top: 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Cria três colunas de larguras iguais */
    gap: 10px;
    /* Opcional: adiciona um espaço entre as colunas */
}

.saud {
    position: absolute;
    margin-left: 440px;
    margin-top: 2%;
    color: white;
    border: 1px solid rgb(49, 207, 255);
    padding: 10px;
    border-radius: 10px;
}

.sauds {
    position: absolute;
    margin-left: 920px;
    margin-top: 2%;
    color: white;
    border: 1px solid rgb(49, 207, 255);
    padding: 10px;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: auto;
    transition: 0.3s ease-in-out;
}

.sauds:hover {
    background-color: white;
    border: none;
    cursor: pointer;
    transform: scale(1.2);
    transition: 0.3s ease-in-out;
}

.sauds i {
    font-size: 1.5rem;
    margin: auto;
    transform: translate(0, -10%);
}


.fi-sr-star {
    color: #2bdaf9;
}

.fi-rr-star {
    color: #ffffff;
}

/* Classe quando há notificações disponíveis */
.notOn .fi {
    font-family: 'Font Awesome 5 Free';
    /* Ajuste para a fonte de ícones que você está usando */
    content: "\f005";
    /* Código do ícone para "estrela cheia", ajuste conforme necessário */
}

/* Classe quando não há notificações disponíveis */
.notOff .fi {
    font-family: 'Font Awesome 5 Free';
    /* Ajuste para a fonte de ícones que você está usando */
    content: "\f006";
    /* Código do ícone para "estrela vazia", ajuste conforme necessário */
}

.card {
    width: 350px;
    height: 200px;
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.041);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.144);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* Assuming you want the text in white */
}

.card-text {
    font-size: 22px;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    gap: 30px;
    width: 100%;
}

.card-wip {
    background-image: url(https://m.media-amazon.com/images/S/pv-target-images/03125e3dba48c2b4fffa8ea3997759757a91d1d87e57239976ea8aee3cc25563.jpg);
    background-size: cover;
}

.card-link {
    color: inherit;
    /* Cor do texto igual ao texto pai */
    text-decoration: none;
    /* Sem sublinhado */
}

.card-title {
    font-weight: 400;
    font-size: 15px;
    color: #5b677f;
}

.card-link:hover {
    text-decoration: none;
    /* Sem sublinhado ao passar o mouse */
}

.table-custom {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
}

.table-custom th,
.table-custom td {
    width: 50%;
    text-align: center;
    border-left: 1px solid rgba(26, 152, 255, 0.747);
}

.table-custom th:first-child,
.table-custom td:first-child {
    border-left: none;
    /* Remove a borda da primeira célula de cada linha */
}

.notification-box {
    background-color: white;
    color: black;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 100;
    max-width: 300px;
    height: 550px;
    overflow: hidden;
    overflow-y: auto; /* Permite a rolagem se muitas notificações forem exibidas */
}

.notification-item {
    margin-bottom: 10px;
}

.notification-item strong {
    display: block;
    margin-bottom: 5px;
    color: #0056b3; /* Cor para o título da notificação, ajuste conforme necessário */
}

.notification-item hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

#closeNotificationBox {
    width: 100%;
    margin-top: 10px;
}