main > .container {
    padding: 70px 15px 20px;
    max-width: 90% !important;
    margin: 0 auto !important;
}

body {
    font-family: var(--bs-font-monospace) !important;
   /* height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f0f0f0;*/
}

.custom-container {
    max-width: 1500px !important;
    margin: 0 auto !important;
    padding-left: 15px;
    padding-right: 15px;
}

/* Para o footer também */
.footer .container {
    max-width: 90% !important;
    margin: 0 auto !important;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th,
.grid-view td:last-child {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 50px;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
    outline: none;
}


/* Dashboard Optimizations */
.card {
    border: 1px solid #e3e6f0;
    transition: all 0.15s ease;
}

.card:hover {
    box-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.1);
}

.border-left-primary { border-left-color: #4e73df !important; }
.border-left-success { border-left-color: #1cc88a !important; }
.border-left-info { border-left-color: #36b9cc !important; }
.border-left-warning { border-left-color: #f6c23e !important; }
.border-left-danger { border-left-color: #e74a3b !important; }

/* Loading States */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


.container-login {
      display: flex;
      max-width: 945px;
      max-height: 635px;
      width: 90%;
      height: 80%;
      background-image: url('/mestres24horas/backend/web/img/login_bg.png');
      background-size: cover;
      background-position: center;
      border-radius: 10px;
    /*  overflow: hidden;*/
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .left-login, .right-login {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      background-color: rgba(255,255,255,0.7); /* leve transparência para legibilidade */
    }

    .left-login {
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      color: #333;
    }



.right-login {
      flex-direction: column; /* garante que logo e formulário fiquem empilhados */
    }


    .right-login form {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 300px;
    }

.right-login form img {
      width: 50%; 
      margin-bottom: 20px;
	
    }
.right-login img {
border-radius: 50%;
width: 120px;
height:120px;
margin-bottom: 20px;}


    .right-login form input {
      margin-bottom: 15px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }

    .right-login form button {
      padding: 10px;
      background-color: #007BFF;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .right-login form button:hover {
      background-color: #0056b3;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .container-login {
        flex-direction: column;
        height: auto;
      }
      .left-login, .right-login {
        width: 100%;
        height: auto;
      }
      .left-login {
        font-size: 1.5rem;
        padding: 40px 20px;
      }





