body {
    display: flex;
    margin: 0;
    height: 100vh;
    font-family: sans-serif;
    background-color: #23272a; /* Discord dark background */
    color: white; /* White text for better readability */
}

.menu {
    width: 200px;
    background-color: #2c2f33; /* Discord secondary dark background */
    padding: 10px;
    box-sizing: border-box;
    overflow-y: auto;
}

.menu button {
    display: block;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 5px;
    background-color: #7289da; /* Discord light blue for buttons */
    color: white;
    border: none;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

.menu button:hover {
    background-color: #5865f2; /* Darker blue on hover */
}

.content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #36393f; /* Discord content background */
}

#page-container {
    width: 100%;
    height: 100%;
    overflow: auto;
}

#page-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #36393f; /* Match content background */
}