@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body{
	background-color: #0f1016;
	color: white;
	margin: 20;
	font-family: "Inter", sans-serif;
	min-width: 900px;
}

.container{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	border: 1px solid #006cff;
	margin: 10px;
}


#projects-select{
	width: 200px;
	height: 40px;
	border: 2px solid #006cff;
	background-color: #0f1016;
	color: white;
	padding: 0px 5px 0px 5px;
	font-size: 1.2em;
}

#user-box{
	display: flex; 
	flex-direction: column;
	text-align: right;
	color: white;
}

.simple-input{
	background-color: rgba(0,0,0,0);
	border-width: 0px 0px 2px 0px;
	border-style: solid;
	border-color: rgba(255,255,255,.5);
	color: white;
}

#event-id{
	font-size: 1.5em;
	font-style: italic;
}

input[type=color] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
input[type=color]::-webkit-color-swatch {
  border-radius: 5px;
  border: none;
}
input[type=color]::-moz-color-swatch {
  border-radius: 5px;
  border: none;
}


#photo-browse{
	background-color: white;
	border-radius: 5px;
	border: none;
	width: 100px;
	height: 20px;
	padding: 10px;
}

#event-logo{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#active-players-box{
	display: flex; 
	flex-direction: column;
	text-align: right;
	color: white;
}

a{
	color: white;
}

#main-content-box{
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	height: 80%;
	width: 100%;
}

/* Project management buttons */
.project-button {
	padding: 5px 10px;
	margin-left: 5px;
	background-color: #333;
	color: white;
	border: 1px solid #006cff;
	cursor: pointer;
	font-size: 0.9em;
}

#new-project-button {
	background-color: #006cff;
}

#delete-project-button {
	background-color: #EA4247;
	border-color: #EA4247;
}

/* Question management */
.question-item {
	padding: 10px;
	border-bottom: 1px solid #006cff;
	cursor: pointer;
}

.question-item:hover {
	background-color: rgba(0, 108, 255, 0.1);
}

.question-item.active {
	background-color: rgba(0, 108, 255, 0.2);
}

#new-question-button {
	margin-top: 20px;
	background-color: #006cff;
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	width: 100%;
}

/* Empty state */
.empty-state {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 200px;
	text-align: center;
	padding: 20px;
}

.empty-state p {
	margin-bottom: 15px;
}