html {
    height: 95%;
    margin: 0;
}

body {
    background-color: rgb(0, 128, 128);
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 4%;
    padding-bottom: 0;
    height: 95%;

    cursor: url('energy/arrow.cur'), default;
}

a {
    cursor: url('energy/hand.cur'), pointer;
}

/*================================
    FONTS
================================*/

@import url('https://fonts.cdnfonts.com/css/w95fa');

.windows-font {
    font-family: 'W95FA', sans-serif;
}

.star-font {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.italic {
    font-style: italic;
}

/*================================
    ENERGY-HELP
================================*/

.text-box{
    margin-left: 2%;
}

.text-box h2, h3 {
    padding: 0;
    margin: 0;
    margin-top: 2%;
}

.text-box p{
    font-size: large;
    line-height: 1.5;
    width: 70%;
    margin: 0;
    margin-top: 1%;
}

.help-link{
    color: black;
}

.help-link:hover{
    background-color: rgb(0, 0, 130);
    color: white;
}

/*================================
    ENERGY-EDIT
================================*/

.go-back {
    margin-right: 3px;
    color: black;
}

.go-back:hover {
    background-color: rgb(0, 0, 130);
    color: white;
}

.go-legs {
    margin-right: 3px;
    color: black;
}

.go-legs:hover {
    background-color: deeppink;
    color: white;
}

.blind{
    color: rgb(240, 240, 240);
}

.blind:hover{
    color: white;
}

/*================================
    MAIN WINDOW
================================*/

.container {
    width: 100%;
    height: 95%; 
}

.window {
    border: 2px solid white;
    outline: 2px solid rgb(200, 191, 231);
    background-color: rgb(200, 191, 231);
    height: 100%;
    padding: 0;

    display: flex;
    flex-direction: column;
}

/*==== TOP BAR ====*/

.bar {
    position: relative;
    background-color: rgb(0, 0, 130);
    margin: 0;
    margin-left: 2px;
    margin-right: 2px;
}

.bar-title {
    position: relative;
    color: white;
    margin: 2px;
}

.close-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

/*==== MENU BAR ====
    File Edit View Help */

.menu-bar a {
    display: inline-block;
    margin: 0;
    padding: 0;
    padding-left: 1%;
    font-size: large;
    text-decoration: none;
    color:black;
}

.menu-bar a:hover{
    color: white;
}

.menu-bar {
    padding-top: 0.5%;
}

.underline {
    text-decoration: underline;
}

/*==== REST OF WINDOW ====*/

.main-wrapper {
    display: flex;
    flex: 1;
    width: 100%;
    gap: 4px;
    margin-top: 4px;
    overflow: hidden;
}

/* left side for navigation */

.navigation {
    width: 30%;
    margin-left: 2px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* right side for content */

.content {
    width: 70%;
    margin-right: 2px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Title box stating either navigation or content */

.title-box {
    border-top: solid 2px grey;
    border-left: solid 2px grey;
    border-bottom: solid 2px white;
    border-right: solid 2px white;

}

.title-box-font {
    font-family: 'W95FA', sans-serif;
    font-size: large;
    padding: 1px;
    margin: 0;
    margin-left: 2px;
}

/* white boxes */

.content-box {
    background-color: white;
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 0;
    border-top: solid 2px grey;
    border-left: solid 2px grey;
    border-bottom: solid 2px lightgray;
    border-right: solid 2px lightgray;

    flex-grow: 1;
    height: 100%;
    overflow-y: auto;
}

/*================================
    NAVIGATION
================================*/

.navigation-tree ul {
  list-style: none;
  padding-left: 20px;
  margin: 5px 0;
  font-size: large;
  line-height: 1.5;
}

.trnavigation-treeee li {
    list-style: none;
  margin: 3px 0;
}

.navigation-tree a {
  text-decoration: none;
  color: black;
}

.navigation-tree a:hover {
  background-color: rgb(0, 0, 130);
  color: white;
}

/*================================
    TABLE
================================*/

.review-table {
    width: 95%;
    margin: 2.5%;
    border: 2px solid grey;
}

.review-table th, 
.review-table td {
    border: 2px solid grey;   /* Inner borders */
    padding: 8px;
    text-align: left;
}

.review-table .title {
    text-align: center;
    margin: 0;
}

.review-table .review-text {
    padding: 1%;
}

.review-image {
    position: relative;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.image-cell {
    text-align: center;
    width: 40%;
}

.label {
    width: auto;
    position: relative;
    font-size: large;
    vertical-align: top;
    line-height: 1.5;
}