html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body, h1, img {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: #fff;
    padding: 10px;
}

img {
    max-width: 100px; /* Adjust the logo size as needed */
}

.tabs {
    display: flex;
}

.tab {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
}

main {
    padding: 20px;
}

footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #fff;
    color: #fff;
    padding: 10px;
}

#action-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
}

.down-arrow {
    transform: rotate(45deg);
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 7px;
    vertical-align: 2px;
}

/*.footer-links a {
            color: #fff;
            text-decoration: none;
            margin-right: 20px;
        }*/

/* Mobile Styles */

@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    .tabs {
        margin-top: 10px;
    }

    footer {
        flex-direction: column;
        align-items: flex-end;
    }
}

/*Styles for to view the right pane and toggle button for left pane*/
.page {
    display: flex;
}

.left-pane {
    width: 25%; /* Adjust as needed */
    padding: 10px;
    /*background-color: #f0f0f0;*/
    height: auto;
}

.right-pane {
    width: 75%; /* Adjust as needed */
    padding: 10px;
}

#leftPane {
    display: initial; /* Initially display the left pane */
}

#toggleButton {
    cursor: pointer;
    /*background-color: #0074d9;*/
    color: #333;
    padding: 0px 10px 0px 10px;
    margin-left: 0px;
    margin-top: 0px;
    font-size: 30px;
}
/*End*/