body, html {
	background: #1a1a1a;
}

.login-page {
	display: flex;
	justify-content: center;
	height: 100vh;
	align-items: center;
	flex-direction: column;
}

.login-page .logo {
	width: 256px;
	margin-bottom: 32px;
}

.login-page .login-submit {
	text-align: center;
}

.login-page .login-submit input[type="submit"] {
	background: #F8B133;
	border: none;
	color: white;
	padding: 8px 12px;
}
.login-page .login-submit input[type="submit"]:hover {
	background: #c78001;
}

.topmenu {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	background: black;
	padding: 15px;
}

.topmenu .logo {
	height: 28px;
}

.header {
	width: 100%;
	max-height: 400px;
	min-height: 200px;
	height: 100%;
	background: #efefef;
	display: flex;
	justify-content: center;
	align-items: center;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.container {
	max-width: 1140px;
	width: 100%;
	display: flex;
	padding: 15px;
}

.container.horizontal {
flex-direction: row;
}

.container.vertical {
	flex-direction: column;
}

.user--profile {
	position: relative;
	top: 100px;
	left: 0;
	display: flex;
	align-items: end;
	gap: 20px;
}

.username {
	font-size: 1.5em;
	margin-bottom: 20px;
}

.user--photo img {
	
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
}

.button {
	box-shadow: rgba(0, 0, 0, 0.2) 1.95px 1.95px 2.6px;
	padding: 5px 10px;
	border-radius: 5px;
}

.button.orange {
	background: #f8b133;
	color: white;
}

.button.red {
	background: red;
	color: white;
}

.button.white {
	background: white;
	color: black;
}

.content {
	display: flex;
	flex-direction: row;
	padding: 15px;
	gap: 10px;
}

.sidebar {
	padding: 15px;
	border-right: 1px solid gray;
	width: 300px;
}

.project_list ul {
	display: flex; 
	flex-direction: column;
	gap: 5px;
	
}
.sidebar ul {
	padding: 0;
	list-style-type: none;
}

.sidebar li {
	padding: 10px 10px;
	border-radius: 5px;
	transition: 0.3s;
	cursor: pointer;
}

.sidebar li.active, .sidebar li:hover {
	box-shadow: rgba(0, 0, 0, 0.2) 1.95px 1.95px 2.6px;
	background: #2a2a2a;
	
}

.sidebar li a {
	text-decoration: none;
	color: #f8b133;
}

.status {
	text-wrap: nowrap;
	font-size: 12px;
	padding: 5px 10px;
	color: white;
	border-radius: 5px;
}

.status.purple {
	background: #9b59b6;
}

.status.blue {
	background: #3498db;
}

.status.yellow { 
	background: #f1c40f;
}

.status.orange { 
	background: #e67e22;
}

.status.green { 
	background: #2ecc71;
}

.status.gray {
	background: #7f8c8d;
}

.files {
	list-style-type: none;
	padding: 15px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 10px;
	flex: 1;

}

.files li {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 10px;
	box-shadow: rgba(0, 0, 0, 0.2) 1.95px 1.95px 2.6px;
	padding: 10px;
	border-radius: 5px;
	background: #2a2a2a;	
	margin-bottom: 10px;
}

.files li .title {
	color: white;
}

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.alert {
	padding: 5px 10px;
	border-radius: 5px;
}

.alert.info {
	background: #65a1c9;
	color: white;
}


.project-content {
	display: none;
}

.project-content.visible {
	display: block;
}

.activities th, .activities td {
	padding: 5px;
}

.activities input[type="checkbox"] {
	accent-color: black;
}

.notas {
	background: #2a2a2a;
padding: 20px;
border-radius: 5px;
background-color: #2a2a2a;
	color: rgb(198, 198, 198);
	margin-bottom: 20px;
}

.notas h1 {
	color: white;
}