body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #404040;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.navBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #303030;
    padding: 10px 20px;
}

.navLinks {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navLinks li {
    position: relative;
    margin-left: 40px;
}

.navLinks a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.navLinks a:hover {
    color: #ddd;
}

.dropdownContent {
    display: none;
    position: absolute;
    background-color: #333;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 225px;
    top: 100%; 
    left: 0;
    list-style: none; 
    padding: 0;
    margin: 0; 
}

.dropdownContent li {
    margin: 0;
}

.dropdownContent a {
    padding: 10px;
    display: block;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

.dropdownContent a:hover {
    background-color: #303030;
}

.dropdown:hover .dropdownContent {
    display: block;
}

.search {
    max-width: 1200px;
    width: 75%;
    min-width: 600px;
    font-size: x-large;
    margin: auto;
    margin-bottom: 20px;
}

.filter {
    margin-top: 10px;
    margin-bottom: 10px;
}

.filterLabel {
    width: 125px;
    display: inline-block;
}

.filterSelect {
    width: 400px;
    font-size: x-large;
    display: inline-block;
}

.tagsContainer {
    border-style: solid;
    border-color: #404040;
    border-radius: 15px;
    border-width: 2px;
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    grid-template-columns: auto auto;
}

.tag {
    display: inline-block;
    border-style: solid;
    border-color: #404040;
    white-space: nowrap;
    border-radius: 5px;
    border-width: 2px;
    margin: 5px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.tagSelect {
    transform: scale(1.5, 1.5);
}

.tagLabel {
    font-size: smaller;
    margin-left: 5px;
}

.standardButton {
    padding: 10px 20px;
    background-color: #404040;
    font-size: large;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    margin-left: 0;
}

.content {
    min-height: 100vh;
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1000px;
    width: 80%;
    min-width: 600px;
    padding: 20px;
    background-color: #eeeeee;
}

.box {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-style: solid;
    border-color: #404040;
    border-radius: 15px;
    border-width: 3px;
    margin: 20px;
}

.whiteBackground {
    background-color: white;
}

.resultTopRow {
    justify-content: space-between;
}

.alignLeft {
    text-align: left;
    display: inline;
}

.alignRight {
    text-align: right;
    display: inline;
    float: right;
}

.toggleButton {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-left: 5px;
    transform: rotate(0deg);
    transition: transform 0.3s;
}
  
.extraContent {
    display: none;
    margin-top: 10px;
}
  
.toggleButton.active {
    transform: rotate(180deg);
}

.questionArea {
    justify-content: center;
    display: flex;
}

.questionImage {
    width: 90%;
    height: auto;
}