body {
    font-family: monospace, sans-serif;
    background-color: #292C34;
    color: white;
    margin: 0;
}

#header{
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	background-color: rgba(0,0,0,.5);
	padding: 10px;
	gap: 20px;
	margin: 10px;
	border: .5px solid rgba(255,255,255,.5);
}

.nav-box{
	display: flex;
	flex-direction: row;
	align-items: space-between;
	gap: 15px;
}

.nav-item{
	background-color: #292C34;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

@media (max-width: 800px) {
  #header {
    flex-direction: column;
    gap: 10px;
  }
  .nav-box{
  	height: 40px;
  	gap: 10px;
  	justify-content: center;
  }
  #selected-editor{
  	display: none;
  }
}

#logo-box{
	background-color: #292C34;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 10px 20px 10px 20px;
}

.nav-button{
    border: none;
    padding: 0px 10px 0px 10px;
    background-color: #8E9C89;
    color: white;
    cursor: pointer;
    font-family: monospace, sans-serif;
}

#save-event-btn{
	font-size: 25px;
	font-weight: bold;
	height: 40px;
}

.delete-button{
	background-color: #c14d30 !important;
}


.container button{
	border: none;
    padding: 0px 10px 0px 10px;
    background-color: #8E9C89;
    color: white;
    cursor: pointer;
    font-family: monospace, sans-serif;
    height: 30px;
}

button:hover {
    background-color: #c14d30;
}



h1 { 
text-align: center; 
}

.container {
  display: flex;
  gap: 20px;
  margin: 10px;
}

.column {
  flex: 1;
  border: none;
  max-height: 90vh;
  overflow-y: auto;
  border: .5px solid rgba(255,255,255,.5);
  padding: 10px;
}

.event-item, .logistic-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  padding-bottom: 5px;
  display: flex;
  flex-direction: row;
  align-items: space-between;
  justify-content: space-between;
  gap: 15px;
}

.form-container {
  padding: 10px;
  background-color: rgba(0,0,0,.5);
  margin-bottom: 15px;
}

label {
  display: block;
  margin-top: 8px;
}

input[type="text"],
input[type="date"] {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

.gear-selector {
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  padding: 5px;
}

.gear-selector input[type="checkbox"] {
  margin-right: 5px;
}

.search-box {
  width: 100%;
  padding: 3px;
  box-sizing: border-box;
}

.tag {
  font-size: 0.8em;
  background-color: #eee;
  color: #151619;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 2px 4px;
  margin-left: 5px;
}

.conflict-tag{
  font-size: 0.8em;
  background-color: red;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 2px 4px;
  margin-left: 5px;
  color: white;
}

#event-list-table, #logistics-list-table{
	width: 100%;
	border-collapse: collapse;
	gap: 20px;
	padding: 10px;
}

#event-list-table{
	border: none;
}

#logistics-list-table tr{
	border: 1px solid white;
}

.event-name-td, .event-start-td, .event-end-td, .logistics-name-td{
	border-bottom: .5px solid rgba(255,255,255,.5);
}

.event-start-td, .event-end-td{
	text-align: center;
}

.event-name-td{
	text-align: left;
}

.event-list-table button{
	width: 75px;
}

.event-edit-button-td, .event-delete-button-td, .event-export-button-td{
	width: 75px;
	text-align: center;
}
