@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Pixelify+Sans:wght@400..700&display=swap');

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
}

h1 {
    margin: 0;
}

iframe {
    border: none;
}

.container {
    display: flex;
    height: 100vh;
}

.logo {
    display: block;
}

.sidebar {
    display: flex;
    flex-direction: column;

    width: 450px;
    max-width: 450px;

    background-color: #E3E3E8;
    padding: 20px;
    padding-bottom: 55px;
    border-right: 1px solid #E3E3E8;
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-footer {
    margin-top: auto;
    align-self: flex-start;
}

.header-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.header-buttons a {
    border-radius: 8px;
    border: 1px solid #C8C7D1;
    text-decoration: none;
    color: inherit;
    font-size: 12px;
}

.header-buttons a div {
    border-bottom: 1px solid #0000001F;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background-color: #FFFFFF;
}

.header-buttons a.cart {
    border: 1px solid #4A55C9;
    background-color: #626BD0;
}

.header-buttons a.cart div {
    border: 1px solid #FFFFFF33;
    background-color: #626BD0;
}

.sidebar-navigation {
    background-color: #FFFFFF;
    border: 1px solid #F2F1F4;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    overflow-y: auto;
}

.sidebar h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 18px;
}

.sidebar h3 {
    padding-left: 20px;
    margin: 10px 0px;
}

.sidebar ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.sidebar li:not(:last-child) {
    border-bottom: 1px solid #E3E3E8;
}

.sidebar button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    padding-left: 20px;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
}

.sidebar button:hover,
.sidebar button.selected {
    background: #F0F1FF;
    padding-left: 25px;
}

.iframe {
    flex-grow: 1;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}
