@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding-bottom: 80px;
    margin: 0;
}

.cabecalho h2 {
    text-align: center;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    max-width: 100%;
    max-height: 90%;
    margin-top: 2%;
}

.container-exibir,
.container-abrir {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 800px;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 90%;
    margin-top: 3%;
}

.container-filtro {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgb(209, 209, 209);
    box-sizing: border-box;
    border: 1px solid #46464663; /* Add this line to include a border */
    max-height: 90%;
    margin-bottom: 3%;
    width: 800px;
    max-width: 100%;
    max-width: auto;
    display: none;
    
    max-height: 0;
    opacity: 0;
    transition: max-height 0.8s ease, opacity 0.8s ease;
}

.container-filtro.show {
    max-height: 500px; 
    opacity: 1;
}

.black-label {
    color: rgb(0, 0, 0);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.filtro-label {
    color: rgb(0, 0, 0);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#transferModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 1000;
}
.modal-content {
    text-align: center;
}


.form {
    display: flex;
    flex-direction: column;
}

.input-field {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
}

.txt-area {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-size: 1rem;
    outline: none; 
    transition: border-color 0.2s ease-in-out; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.txt-area:hover {
    border-color: #999; 
}

.txt-area:focus {
    border-color: #007BFF; 
}

.blue-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    transition: background-color 0.2s ease-in-out; 
}

.red-button {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    transition: background-color 0.2s ease-in-out; 
}

.green-button {
    background-color: #3CB371;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    transition: background-color 0.2s ease-in-out; 
}

.blue-button:hover {
    background-color: #015192;
}

.red-button:hover {
    background-color: #a50f0f;
}

.green-button:hover {
    background-color: #30752a;
}

.btn-filtro {
    width: 20px;
    height: 20px;
}

.btn-filtro:hover {
    cursor: pointer;    
}

.form-filtro {
    box-sizing: border-box;
}

.form-grupo {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 50%;
    box-sizing: border-box;
}

.form-grupo input[type="checkbox"] {
    flex: 0;
    height: 25px;
    transform: scale(1.5);
}

.form-grupo label {
    flex: 1;
}

.titulo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.botoes-pagina {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.chamado {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: auto;
    height: auto;
}

.txt-btn {
    text-decoration: none;
    color: white;
}

.row-chamado {
    font-weight: 500;
}

.infos-pagina {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}

table a {
    text-decoration: none;
    font-weight: bold;
    color:#1717ce;
    transition: color 0.2s ease-in-out; 
}

table a:hover{
    text-decoration: none;
    color:#15437e;
}

th {
    background-color: #f2f2f2;
    color: #333;
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

td {
    padding: 8px;
    border: 1px solid #ddd;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media screen and (max-width: 600px) {
    body {
        padding: 15px;
    }

    .container, .container-abrir, .container-exibir, .container-filtro {
        padding: 10px;
    }

    .container-filtro {
        font-size: 0.9em;
    }

    .black-label {
        font-size: 1.2em;
    }

    table {
        font-size: 6px;
        overflow: auto;
    }
}
