body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}
.sidebar {
    max-width: 250px;
    height: 100vh;
    background-color: #222;
    color: white;
    padding: 20px;
    transition: max-width 0.3s ease;
    overflow: hidden;
}
.sidebar.collapsed {
    width: 0;
    padding: 0;
}
/* Header bar styles */
#pagewrap {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    width: 100%;
}
.content {
    flex-grow: 1;
}
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}
.title {
    flex-grow: 1;
    text-align: center;
    font-size: 1.2rem;
}
.header-bar .icon {
    cursor: pointer;
    font-size: 1.5rem;
}


.gdt-panel pre, .gdt-panel p {
    margin-bottom: 0;
}


.gdt-form {
    padding: 1rem;
    border: 2px groove lightgray;
    border-radius: 8px;
    margin: 1rem auto;
}

input[readonly] {
    background: linen;
    opacity: 0.7;
    cursor: not-allowed;
}

.gdt-order a {
    text-decoration: none;
}

.gdt-order a.active {
    color: gold;
}
