/* Index */

body {
	margin: 0;
	padding: 0;
}

.menu-nav-item a{
	font-size: 14px;
}

.sidebar {
	height: 100%;
	width: 100%;
	max-width: 240px;
	position: fixed;
	top: 0;
	right: 0;
	background-color: #8ad881;
	padding: 1rem;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.sidebar.collapsed {
	transform: translateX(100%);
}

@media (max-width: 767px) {
	.sidebar {
		right: 0;
		transform: translateX(0);
	}
	.content {
		margin-right: 0;
	}
}

@media (min-width: 768px) {
	.sidebar {
		right: 100%;
		transform: translateX(0);
	}

	.content {
		margin-left: 250px;
	}

	#toggleSidebar {
		display: none;
	}
}

.content {
	margin-right: 0;
	padding: 1rem;
	padding-top: 56px;
}

.navbar {
	z-index: 1001;
	background-color: #8ad881;
}

.navbar-text {
	font-size: 1.25rem;
	font-weight: bold;
}

.nav-link {
	cursor: pointer;
	color: white;
}

.nav-link:hover {
	background-color: #4caf50;
	color: #ffffff !important;
	border-radius: 4px;
}

.nav-link.active {
	font-weight: bold;
}

.nav-item a {
	color: #3d5937;
}

.nav-item .collapse {
	display: none;
}

.nav-item .collapse.show {
	display: block;
}

#toggleSidebar {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

@media (min-width: 768px) {
	#toggleSidebar {
		display: none;
	}
}

/* Home */

.quadrado {
	width: 200px;
	height: 200px;
	position: relative;
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quadrado span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.bloco-freijo,
.bloco-aroeira {
	background-color: #e87575;
}

.bloco-imbuia,
.bloco-canela {
	background-color: #e9f152;
}

.bloco-ipe,
.bloco-carvalho {
	background-color: #298b99;
}

.bloco-jacaranda,
.bloco-cedro {
	background-color: #34a226;
}

.subtitulo {
	font-size: 0.8em;
	color: gray;
}

.titulo {
	color: #3d5937;
}

.notify-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #8ad881;
	color: white;
	border: none;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

/* Listagem dos edificios */

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
}

.table th,
.table td {
	white-space: nowrap;
	font-size: 12px;
	padding: 0.3rem 0.5rem;
	text-align: left;
}

.table td,
.table th {
	padding: 0.4rem 0.5rem;
}

@media (min-width: 768px) {
	.table-responsive {
		display: none;
	}
	.table-responsive-unique {
		display: block;
	}
}

@media (max-width: 768px) {
	.table-responsive {
		display: block;
	}
	.table-responsive-unique {
		display: none;
	}

	.table {
		font-size: 10px;
		width: 100%;
	}

	@media (min-width: 600px) and (max-width: 1024px) {
		.table th,
		.table td {
			font-size: 11px;
			padding: 0.3rem 0.5rem;
		}
	}

	.table-responsive th,
	.table-responsive td {
		padding: 0.3rem;
	}
}

.table {
	table-layout: fixed;
	width: 100%;
}

.table th,
.table td {
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Tela de Login */

#btnlogin {
	background-color: #4caf50;
}

#cadastrar a {
	text-decoration: none;
	color: #3c5937;
}

/* Tela Cadastro Usuario */

.btncadUsu {
	background-color: #4caf50;
}

.btnvoltar {
	text-decoration: none;
	color: #3c5937;
}

/* Títulos do cadastros */

.title{
	color: #3d5937;
}

.subtitle{
	font-size: 0.9em;
	color: gray;
	font-weight: bold;
}