@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap');

/* Reset margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000; /* Set background to black */
    color: #fff; /* Set default text color to white */
    overflow: hidden; /* Prevent scroll bars */
}

body {
    display: flex;
    flex-direction: column;
}

/* Top Menu */
#top-menu {
    background-color: #333;
    display: flex;
    align-items: center;
    height: 60px; /* Explicit height */
    padding: 0 16px;
}

#logo {
    display: flex;
    align-items: center;
}

#logo-text {
    font-family: 'Roboto Slab', serif;
    font-size: 28px;
    text-decoration: none;
    background: linear-gradient(45deg, #00dbde, #fc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#menu-items {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex: 1;
}

#menu-items li {
    margin: 0;
}

#menu-items li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

#menu-items li a:hover {
    background-color: #111;
}

#login-status {
    color: white;
    display: flex;
    align-items: center;
}

#login-status a {
    color: white;
    text-decoration: none;
    padding: 14px 16px;
}

#login-status a:hover {
    text-decoration: underline;
    background-color: #111;
}

/* Content Area */
#content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #000; /* Ensure content area has black background */
    overflow: hidden; /* Prevent scroll bars */
}

/* Footer */
#footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    height: 40px; /* Explicit height */
}

/* Home page styles */
#home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    overflow: hidden; /* Prevent scroll bars */
}

.image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1;
}

.image-container img {
    max-width: 80%;
    max-height: 70%;
    height: auto;
}

.image-container h1 {
    position: absolute;
    color: #ffcc00; /* Highlight color */
    font-size: 64px; /* Increased font size */
    margin: 0;
    background: linear-gradient(45deg, #ffcc00, #ff3300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Document page styles */
#document-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

#document-list {
    width: 25%;
    border-right: 1px solid #555;
    overflow-y: auto;
    padding: 10px;
    background-color: #000; /* Black background */
}

#document-list ul {
    list-style-type: none;
    padding: 0;
}

#document-list li {
    margin-bottom: 10px;
}

#document-list li a {
    text-decoration: none;
    color: #fff;
}

#document-list li a:hover {
    text-decoration: underline;
}

#document-display {
    width: 75%;
    padding: 10px;
    overflow-y: auto;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

/* Development and Playground iframe styles */
.full-iframe {
    flex: 1; /* Allow iframe to grow and fill content area */
    width: 100%;
    border: none;
    background-color: #000; /* Black background */
}

/* Scrollbar styling (optional) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #333;
}

::-webkit-scrollbar-thumb {
    background: #555;
}
