/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
	font-family: Arial, sans-serif;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
		   background-color: #1e1e2f;
}
.container {
	top:0;
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.container_login{
	max-width: 400px;
	height:400px;
    margin:100px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
}
.container img{
	width:510px;
	
}
.container header {
	display: flex;
	justify-content: space-between;
	align-items: start;
    max-width: 800px;
    margin: auto;
    padding: 30px;
	background-color:#ccc;
}
.container header img {
	width: 100px;
	background-color:#ccc;
}
.container header h2 {
}
h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}
form input,
form textarea,
form select,
form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}
form button {
    background-color: #3498db;
    color: white;
    border: none;
    transition: background 0.3s;
}
form button:hover {
    background-color: #2980b9;
    cursor: pointer;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table th,
table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}
table th {
    background-color: #3498db;
    color: white;
}
table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.td{text-align:center;}
a {
    color: #3498db;
    text-decoration: none;
    margin: 0 5px;
}
a:hover {
    text-decoration: underline;
}
/*calendario*/
       .calendario {
            border-collapse: collapse;
            width: 100%;
            max-width: 700px;
            margin: 20px auto;
        }

        .calendario th {
            background-color: #ccc;
            padding: 10px;
        }

        .calendario td {
            width: 14.28%;
            height: 80px;
            vertical-align: middle;
            text-align: center;
            font-size: 18px;
            border: 1px solid #ccc;
        }

        .util { background-color: #fff; }
        .vermelho { background-color: #f88; color: white; font-weight: bold; }
        .folga { background-color: #8f8; font-weight: bold; }
        .facultativo { background-color: #add8e6; font-weight: bold; }

        .botao {
            padding: 8px 16px;
            font-size: 16px;
           
        }
		.descricao {
            font-size: 10px;
            margin-bottom: 3px;
            font-weight: bold;
        }
		
	.aviso{
		width:400px;
		height:400px;
		border-radius:5px;
		background-color: #000;
		opacity: 0.6;
	}
.exibir {
  max-width: 300px;
  cursor: pointer;
  margin: 10px;
  border: 2px solid #ccc;
  transition: 0.3s;
}

.exibir:hover {
  border-color: #000;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.conteudo-overlay {
  max-width: 90%;
  max-height: 90%;
}

.conteudo-overlay img,
.conteudo-overlay video,
.conteudo-overlay iframe {
	width:600px;
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px #fff;
}

.fechar {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 1001;
}
		@media print {
    body * {
        visibility: hidden;
    }

    #calendario-container, #calendario-container * {
        visibility: visible;
    }

    #calendario-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    table, thead, tbody, th, td, tr {
        display: block;
    }
    table th {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    table td {
        position: relative;
        padding-left: 50%;
        border: none;
        border-bottom: 1px solid #eee;
    }
    table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        top: 10px;
        font-weight: bold;
    }
	.video{
		display:none;
	}
	
}
/*menu*/
    .menu-container {
      background-color: #1e1e2f;
	  display: flex;
    }

    .menu {
    display: flex;
	justify-content: center;
	align-items: center;
    flex-wrap: wrap;
    list-style: none;
    }

    .menu li {
      position: relative;
    }

    .menu > li > a {
      display: block;
      padding: 15px 20px;
      color: white;
      text-decoration: none;
      white-space: nowrap;
    }

    .menu > li:hover {
      background-color: #333;
    }

   /* .submenu {
      display: none;
      position: absolute;
      background-color: #2c2c3e;
      min-width: 180px;
      z-index: 1;
    }

    .submenu li a {
      display: block;
      padding: 12px 16px;
      color: white;
      text-decoration: none;
    }

    .submenu li a:hover {
      background-color: #444;
    }

    .menu li:hover .submenu {
      display: block;
    }

    /* Menu hambúrguer */
    .menu-toggle {
      display: none;
      padding: 15px 20px;
      color: white;
	  position:absolute;
      cursor: pointer;
      background-color: #1e1e2f;
    }