body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.fixed {
	position: fixed;
    top: 0;
    left: 0;
	width: 100%;
}

@media print {

  .fixed {
    position: static;
    top: 0;
    left: 0;
	width: 100%;
  }

}

.header {
    background-color: #F0F9F9;
    display: flex;
    justify-content: space-between;
    padding: 10px;

}

.left-section h1 {
    margin: 0;
}

.right-section {
    display: flex;
    align-items: center;
}

.language-toggle{
    margin: 5px;
    cursor: pointer;
}

.settings {
    display: flex;
    align-items: center;
}

.settings span {
    margin-right: 5px;
}

.settings svg {
    margin-right: 5px;
    margin-left: 15px;
}

.language-toggle.bold {
    font-weight: bold;
}

#expandButton {
	margin: 5px;
    cursor: pointer;
	font-weight: bold;
}

#collapseButton {
	margin: 5px;
    cursor: pointer;
	font-weight: bold;
}

.info {
    margin-left: 20px;
	margin-right: 20px;
}


.options {
    background-color: #E8F3E8;
    align-items: center;
    height: 45px;
}

.option {
    float: left;
    margin-left: 20px;
    cursor: pointer;
    font-size: 1.2em;
    padding: 10px; 
}

.option svg {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}

.project-container {
    background-color: #FFFFFF;
    margin-top: 0px;
    padding-left: 0px;
	padding-top: 105px;
    clear: left;
    overflow: hidden;
}

.single-project-container {
    background-color: #FFFFFF;
    margin-top: 2px;
	padding-top: 0px;
    margin-left: 20px;
    clear: left;
    overflow: hidden;
	border-radius: 25px;
    border: 1px solid #288C84;
}
.single-project-container:hover {
    background-color: #F0F9F9;
    /*color: red; */
}

.title-row h3 {
	color: /*#288C84; */ #288C84; 
	padding-top: 0px;
	padding-left: 15px;
	padding-bottom: 0px;
	margin-bottom: 0px;
    cursor: pointer;
}



.summary-row p:first-child {
    flex: 0.25;
}

.summary-row p {
    flex: 1;
    margin-right: 20px;
    cursor: pointer;
	padding-top: 0px;
	margin-top: 5px;
}

.project-details h {
    flex: 1;
    margin-top: 20px;
    color: #288C84;
	padding-left: 20px;
}

.project-details p {
    margin-top: 2px;
	padding-left: 20px;
	padding-right: 20px;
}

.header-row p:first-child {
    flex: 0.25;
}

.header-row p {
    flex: 1;
    margin-right: 20px;
    color: /*#F5F5DC; */ #288C84; 
    
}



.header-row, .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}