body {
    font-family: Arial, sans-serif;
    background-color: #cecece;
    margin: 0;
    padding: 0;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left .logo {
    height: 50px;
    margin-right: 10px;
}

.header-left .title {
    font-size: 24px;
    color: #2800FF;
    font-family: "Arial", sans-serif;
    margin: 0;
}

.header-right a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.wrapper {
    display: flex;
    height: calc(100vh - 60px); /* Adjust for the height of the top bar */
}

.sidebar {
    width: 300px;
    background-color: #f8f8f8;
    padding: 15px;
    border-right: 1px solid #ddd;
    overflow-y: auto;
}

.sidebar h3 {
    font-size: 1rem;
    margin: 0;
    cursor: pointer;
    padding: 10px;
    background: #e0e0e0;
    border-bottom: 1px solid #ddd;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    display: none;
}

.sidebar ul li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.sidebar ul li:hover {
    background-color: #ddd;
}

.accordion.active {
    background-color: #ddd;
}

.panel {
    padding-left: 0;
    display: none;
    background-color: #f8f8f8;
}

.content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

#item-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#item-image {
    max-width: 100%;
    height: auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.footer {
    display: flex;
    justify-content: space-between;
    margin: 1rem auto 0;
    padding: 1rem 0 0.75rem 0;
    width: 100%;
    flex-wrap: wrap;
    border-top: 4px solid #fff;
}

.footer .links {
    padding: 0.5rem 1rem 1.5rem;
    white-space: nowrap;
}

.footer a:not(.btn--remix):link,
.footer a:not(.btn--remix):visited {
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1.1rem;
    color: #000;
    text-decoration: none;
    border-style: none;
}

.footer a:hover {
    background: #AFECE0;
}

.btn--remix {
    font-family: Arial, sans-serif;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    line-height: 1rem;
    font-weight: 500;
    height: 2.75rem;
    align-items: center;
    cursor: pointer;
    background: #FFFFFF;
    border: 1px solid #000000;
    box-sizing: border-box;
    border-radius: 4px;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    margin-left: auto;
}

.btn--remix img {
    margin-right: 0.5rem;
}

.btn--remix:hover {
    background-color: #D0FFF1;
}
.table-container {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

    
  
