@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");

body {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
}

body * {
    box-sizing: border-box;
}

.main-login {
    width: 100vw;
    height: 100vh;
    background: #201b2c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-login {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.left-login>h1 {
    font-size: 3vw;
    color: #ffffff;
}

.logo {
    width: 700px;
}

.left-login-img {
    width: 100px;
    height: 50px;
}

.right-login {
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-login {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
    background: #2f2841;
    border-radius: 15px;
    box-shadow: 0px 20px 40px #00000056;
}

.card-login>h1 {
    color: #ffffff;
    font-weight: 800;
    margin: 0;
}

.textfield {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0px;
}

.textfield>input {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #514869;
    color: antiquewhite;
    font-size: 12pt;
    box-shadow: 0px 20px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

.textfield>label {
    color: #f0ffffde;
    margin-bottom: 10px;
}

.textfield>input::placeholder {
    color: #f0ffff94;
}

.btn-login {
    width: 100%;
    padding: 16px 0px;
    margin: 25px;
    border: none;
    border-radius: 8px;
    outline: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2b134b;
    background: #ffffff;
    cursor: pointer;
}

@media only screen and (max-width: 950px) {
    .card-login {
        width: 85%;
    }
}

@media only screen and (max-width: 600px) {
    .main-login {
        flex-direction: column;
    }

    .left-login>h1 {
        display: none;
    }

    .left-login {
        width: 100%;
        height: auto;
    }

    .reght-login {
        width: 100%;
        height: auto;
    }

    .left-login-img {
        width: 50vw;
    }

    .card-login {
        width: 100%;
    }
}

html,
body {
    height: 100%;
    margin: 0;
}

a {
    text-decoration: none !important;
    color: #fff !important;
}

.ct-painel-tt {
    background-color: #FFFFFF;
    border: 1px solid rgba(168, 175, 189, 0.3);
    padding: 20px;
    border-radius: 5px 5px 0px 0px;
}

.ct-painel-bd {
    background-color: #FFFFFF;
    border: 1px solid rgba(168, 175, 189, 0.2);
    padding: 20px;
    border-radius: 0px 0px 5px 5px;
}

.menus {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin-top: 10%;
}

.card {
    border: 2px solid #2f2841 !important;
}

.card:hover {
    transform: scale(1.05);
}

/*
.card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
} */

.lista-solic {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5%;
}

.item {
    background-color: #f7f7f7;
    padding: 15px;
    border: 1px solid #c2c1c1;
    border-radius: 3px;
    color: none !important;
}

.item:hover {
    cursor: pointer;
    font-weight: 500;
    color: #2F2841;
    border: 2px solid #2F2841;
    background-color: #fff;
}

.titulo {
    border-bottom: 1px solid #2F2841;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.formulario {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}


/* Estilo base para o botão */
.material-button-flat {
    background-color: #2F2841;
    /* Fundo transparente */
    color: #FFF !important;
    /* Cor do texto, geralmente a cor primária */
    border: none;
    /* Sem borda */
    font-size: 14px;
    /* Tamanho do texto */
    font-weight: 500;
    /* Peso do texto */
    padding: 8px 10px;
    /* Espaçamento interno */
    border-radius: 3px;
    /* Bordas arredondadas */
    text-transform: uppercase;
    /* Texto em maiúsculas */
    letter-spacing: 0.5px;
    /* Espaçamento entre letras */
    cursor: pointer;
    /* Cursor de ponteiro ao passar por cima */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Transição suave */
}

/* Estilo de hover */
.material-button-flat:hover {
    color: #fff;
    /* Cor do texto um pouco mais escura ao passar o mouse */
    background-color: rgba(108, 13, 241, 0.6);
    /* Fundo levemente colorido ao passar o mouse */
}

/* Estilo de foco */
.material-button-flat:focus {
    outline: none;
    /* Remove o outline padrão */
    background-color: rgba(98, 0, 238, 0.24);
    /* Fundo um pouco mais escuro ao focar */
}

/* Estilo de botão desativado */
.material-button-flat:disabled {
    color: rgba(0, 0, 0, 0.38);
    /* Cor do texto para desativado */
    cursor: default;
    /* Cursor padrão */
    background-color: transparent;
    /* Sem mudança no fundo */
    pointer-events: none;
    /* Desativa interação */
}

.material-button-flat-active {
    background-color: #6610f2 !important;
}

/* Estilo base para o botão */
.material-button-excel {
    background-color: #176917;
    /* Fundo transparente */
    color: #FFF !important;
    /* Cor do texto, geralmente a cor primária */
    border: none;
    /* Sem borda */
    font-size: 14px;
    /* Tamanho do texto */
    font-weight: 500;
    /* Peso do texto */
    padding: 8px 10px;
    /* Espaçamento interno */
    border-radius: 3px;
    /* Bordas arredondadas */
    text-transform: uppercase;
    /* Texto em maiúsculas */
    letter-spacing: 0.5px;
    /* Espaçamento entre letras */
    cursor: pointer;
    /* Cursor de ponteiro ao passar por cima */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Transição suave */
}

nav a img {
    width: 80px;
}

.container {
    color: #000;
}

nav {
    background: #2f2841;
}

.painel-sistemas-acoes {
    background: #6610f2;
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #f8f8f8 !important;
}

.page-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.navbar {
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.back-button {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #280147;
    color: white;
    padding: 6px 13px;
    text-decoration: none;
    border-radius: 5px;
    z-index: 1000;
}

.back-button span {
    font-size: 20px;
}

.back-button:hover {
    background-color: #6D418F;
    color: white;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.user-info p {
    margin: 0;
    color: white;
}

.user-info .welcome-message {
    font-size: 16px;
    font-weight: bold;
}

.user-info .user-role {
    font-size: 14px;
    color: #ddd;
}

.user-info .logout-form {
    margin: 0;
}

.user-info button {
    background-color: #280147;
    border: 1px solid white;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 13px;
    border-radius: 5px;
    cursor: pointer;
}

.user-info button:hover {
    background-color: #6D418F;
    border: 2px solid white;

}

.livewire-container {
    width: 80%;
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin: 10px 0
}

.nav-tabs .nav-link.active {
    background-color: #2F2841 ;
    color: #F8F8F8 !important;
}

.nav-tabs .nav-link {
    background-color: #f7f7f7 ;
    color: #000000 !important;
}

.table{
    cursor: pointer;
}