 body {
    margin: 0;
 }

.header {
    display: flex;
    background-color: white;
    width: 100%;
    border-bottom: 0.3vw solid white;
}

.header-left {
    display: flex;
    width: fit-content;
    height: fit-content;
    margin-left: 1.5vw;
    margin-top: 1vw;
    margin-bottom: 1vw;
    gap: 0.5vw;
}

.header-left-icon {
    /*background-color: lightblue;*/
    height: fit-content;
    width: fit-content;
}

.COMMUNITAS-icon {
    height: 3.2vw;
    width: 3.2vw;
}

.header-left-text {
    /*background-color: aquamarine;*/
    width: fit-content;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 0.5vw;
}

.header-left-text-top {
    margin-top: 0.2vw;
    font-family: Ubuntu, sans-serif;
    font-size: 1.2vw;
    font-weight: 500;
    color: black;
    /*background-color: lightcoral;*/
    height: fit-content;
    width: fit-content;
}

.header-left-text-bottom {
    font-family: Ubuntu, sans-serif;
    font-size: 1vw;
    font-weight: 300;
    color: black;
    /*background-color: lightgreen;*/
    height: fit-content;
    width: fit-content;
}

.header-center {
    margin-left: auto;
    margin-top: 1vw;
    margin-bottom: 1vw;
    display: flex;
    /*background-color: blanchedalmond;*/
    gap: 1.5vw;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
}

.header-option {
    height: fit-content;
    width: fit-content;
    font-family: Ubuntu, sans-serif;
    font-size: 1.2vw;
    font-weight: 300;
    color: black;
    /*background-color: darksalmon;*/
    transition: all 0.3s;
}

.header-option:hover {
    font-size: 1.4vw;
    font-weight: 300;
    color: #ec644c;
    cursor: pointer;
}

.header-option:active {
    color: #b64e37;
    cursor: pointer;
}

.header-right {
    /*background-color: aquamarine;*/
    margin-left: auto;
    margin-top: 1vw;
    display: flex;
    gap: 1.5vw;
    margin-bottom: 1vw;
    align-items: center;
}

.header-profile-icon {
    /*background-color: cornflowerblue;*/
}

.header-icon-style {
    width: 2.2vw;
    height: 2.2vw;
    fill: black;
    transition: all 0.2s;
    /*viewBox: 0 0 500.000000 500.000000;
    /*preserveAspectRatio:"xMidYMid meet";*/
}

.header-icon-style:hover {
    fill: #ec644c;
    cursor: pointer;
    /*viewBox: 0 0 500.000000 500.000000;
    /*preserveAspectRatio:"xMidYMid meet";*/
}

.profile-icon {
    height: 2vw;
    width: 2vw;
    transition: all 0.3s;
}

.profile-icon:hover {
    cursor: pointer;
    content: url("../icons/profile-icon.png");
}

.header-cog-icon {
    /*background-color: cornflowerblue;*/
}

.cog-icon {
    height: 2vw;
    width: 2vw;
    transition: all 0.3s;
}

.cog-icon:hover {
     cursor: pointer;
    content: url("../icons/cog-icon.png");
}

.header-logout-icon {
    margin-right: 1.5vw;
    /*background-color: cornflowerblue;*/
}

.logout-icon {
    height: 2vw;
    width: 2vw;
    margin-right: 1.5vw;
    transition: all 0.3s;
}

.logout-icon:hover {
    cursor: pointer;
    content: url("../icons/logout-icon.png");
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    font-family: Ubuntu, sans-serif;
    font-size: 1.2vw;
    font-weight: 300;
    color: black;
    display: none;
    position: absolute;
    background-color: #f8f9fa;
    min-width: 4vw;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 0.4vw 0.6vw;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {color: #ec644c}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}