        body, html {
            margin: 0;
            padding: 0;
            overflow: hidden;
            height: 100vh;
        }
        .header {
            font-family: 'Lato', sans-serif;
            font-size:12px;
            width: 100%;
            color: white;
            text-align: left;
            background: rgb(36, 10, 173);
            height: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        } 
    .header .checkbox-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-right: 10px;
    }

    .header .checkbox-container label {
        display: flex;
        align-items: center;
    }

    .header .checkbox-container input[type="checkbox"] {
        margin-left: 10px;
    }
    
        .header-section {
           flex: 1;
        }
        #headerTitle {
           font-size: 24px;
           text-align: left;
        }
        #headerInfo {
           font-size: 12px;
           margin-right: 20px;
           text-align: right;
        }
        .content {
            display: flex;
            flex: 1;
        }          
    	h1 {
    	   font-family: 'Lato', sans-serif;
    	   font-size:16px;
    	   margin-left: 20px;
        }
    	h2 {
    	   font-family: 'Lato', sans-serif;
    	   font-size:14px;
    	   margin-left: 20px;
        }
	ul {
	   list-style-type: none;
	   margin: 0;
	   padding: 0px;
        }
	li {
	   padding: 9px 0px 2px 5px;
	   color: rgb(84,56,241);
        }
	li:hover {
	  background: rgb(36, 10, 173); color:#fff;
	}
	a {
	  text-decoration: none;
	}

        .container {
            display: flex;
            height: calc(100vh - 100px);
            
        }
        .left {
            width: 10%;
            border-right: 1px solid #ccc;
            padding: 10px;
            overflow: auto;
        }
        .right {
            width: 90%;
            padding: 10px;
            overflow: auto;
        }
        .resizer {
/*            background: #999;*/
            width: 5px;
            cursor: col-resize;
            z-index: 1;
            background: repeating-linear-gradient(
              to right,
              #777,
              #777 1px,
              transparent 1px,
              transparent 2px,
              #777 2px,
              #777 3px,
              transparent 3px,
              transparent 4px
            );        
        }
        table {
            width: 100%;
            border-collapse: collapse;
	    font-family: 'Lato', sans-serif;
	    font-size: 11px;
        }
	thead {
	    background-color:#999;
	    color:#fff;
	    font-weight: bold;
	    cursor: pointer;
	}
        th, td {
            border: 1px solid #ccc;
            padding: 8px;
            text-align: left;
        }
        .cancelada {
            color: red;
            font-weight: bold;
        }
        .correcao {
            color: blue;
            font-weight: bold;
        }
        .contingencia {
            color: green;
            font-weight: bold;
        }
        th.coluna-direita, td.coluna-direita {
            text-align: right;
        }
        th.coluna-centro, td.coluna-centro {
            text-align: center;
        }

        th {
            background: rgb(84,56,241);
            color: #fff;
        }
        th.sortable {
            cursor: pointer;
        }
	tr:nth-child(even) {
	    background-color: #f0f0f0;
	}
	tr:hover {background: rgb(36, 10, 173); color:#fff;}
        .month-link {
            font-family: 'Lato', sans-serif;
            font-size: 12px;
            border: 1px solid #ccc;
            border-spacing: 2px;
            height: 24px;
            text-align: center;
            cursor: pointer;
            font-weight: bold;
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: rgba(0, 0, 0, 0.9); 
        }
        .modal-content {
            background-color: #fefefe;
            margin: 15px auto;
            padding: 20px;
            border: 1px solid #888;
            width: 90%;
            height: 90%;
        }
        .loading-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;
            background: #fff; /* 90% transparent dark background */
            color: #000; /* Optional: to ensure the text is readable */
	    font-family: 'Lato', sans-serif;
	    font-size: 16px;
            border: 2px solid #ccc;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .modal-overlay {
           display: none;
           position: fixed;
           z-index: 999;
           left: 0;
           top: 0;
           width: 100%;
           height: 100%;
           background-color: rgba(0, 0, 0, 0.9); /* 90% transparent dark background */
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;

        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        .pagination {
            display: flex;
            justify-content: center;
            margin: 20px 0;
            font-family:  'Lato', sans-serif;
	    font-size: 18px;
        }
        .pagination select, .pagination button {
            margin: 0 5px;
            padding: 5px 10px;
        }
        .material-symbols-outlined {
            font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 40;
            color: rgb(84,56,241);
            font-size: 26px;
        }
