﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    /*max-width: 60px;*/
    margin: 0 10px 0 0px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 0.1rem;
        margin-right: 0.1rem;
    }

.CustomCalendar .ajax__calendar_container {
    background-color: #f0f0f0;
}

.controle-arredondado {
    border-radius: 10px; /* ou 50px para estilo cápsula */
}

.menu-container {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    margin-top: 20px;
}

/* Estiliza os itens do menu */
.MenuStyle a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #0078D7;
    color: white;
    text-decoration: none;
    border-radius: 12px; /* Cantos arredondados */
    margin: 1px;
    transition: background-color 0.3s ease;
}

    /* Estilo ao passar o mouse */
    .MenuStyle a:hover {
        background-color: #005A9E;
    }

.Css-table {
    width: 80%; /* **Importante**: A tabela precisa ter uma largura definida */
    margin-left: auto; /* Centraliza horizontalmente */
    margin-right: auto; /* Centraliza horizontalmente */
    background-color: #E3F2FD;
}

.Css-Td {
    border: 0px;
    padding: 8px;
    text-align: left;
}

.Css-th {
    border: 0px;
    text-align: right;
}

.modalDetalhes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 2px solid #444;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

