* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
	height: 100%;
}

body {
 font-family: sans-serif;
 font-size: 14px;
 height: 100%;
}

.modal {
  display: none; /* Escondido por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
  z-index: 1000;
  backdrop-filter: blur(3px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 80%;
  height: 80%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.close {
 border: 1px solid grey;
 background: white;
 border-radius: 50%;
 padding: 5px 12px;
 position: absolute;
 top: 10px;
 right: 15px;
 font-size: 24px;
 font-weight: bold;
 cursor: pointer;
}

.main-container-home {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /*background-color: antiquewhite;*/
}

.dashboard-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  margin: 15px 0;
  /*width: 90%;*/
  /*background-color: azure;*/
}


#duties-section h1, #schedule-activities-obligations h1 {
	font-size: 16px;
	margin-left: 15px;
	/*margin-top: 15px;*/
	margin-top: -3px;
}

#information-board-container {
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
 margin: 15px;
 margin-top: 11px;
 margin-bottom: 0;
}

.container-boxes {
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-start;
 gap: 20px;
}

.container {
 box-sizing: border-box;
 border: 1px solid rgb(181, 181, 181);
 display: flex;
 flex-direction: column;
 justify-content: start;
 align-items: center;
 width: 140px;
 height: 120px;
}

.title {
 box-sizing: border-box;
 width: 100%;
 text-align: center;
 background-color: #215F9A;
 color: white;
 padding: 10px 5px;
 font-size: 12px;
 font-weight: bold;
}

.subcontainer {
 box-sizing: border-box;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 flex: 1;
}

.quantity {
 font-size: 35px;
}

.info {
 font-size: 14px;
 color: #444444;
 cursor: pointer;
 border: 0;
 background-color: transparent;
 margin-top: 5px;
}

button.info:hover {
	text-decoration: underline;
}

.title.olive {
 background-color: #13501B;
}

.title.orange {
 background-color: #C04F15;
}

#calendar-container {
	height: 100%;
}

#calendar-container iframe {
	width: 826px;
	/*height: 758px;*/
	height: 405px;
	border: none;
}
