/* Common styles */
body {
    background-color: black;
    color: green;
    font-family: "Courier New", monospace;
    margin: 0;
    overflow: hidden;
}

/* Layer 1: Canvas and Particles */
.canvas-layer {
    position: relative;
}

/* Layer 2: Chat Interface */
.chat-layer {
    position: fixed;
    top: 10px;
    right: 10px;
}

/* Layer 3: Additional Content */
.additional-content-layer {
    position: relative;
    padding: -20px;
    color: white;
}

/* Layer 4: Foldable Window and Additional Content */
.foldable-window-layer {
    position: fixed;
    bottom: 20px;
    left: 20px;
}

/* Layer 4: Foldable Window and Additional Content */
.foldable-window-layer {
    position: fixed;
    bottom: 20px;
    left: 20px;
}

.foldable-window {
    background-color: #212121; /* Dark gray background */
    color: #FFFFFF; /* White text color */
    font-family: "Courier New", monospace;
    border: 0px solid #00FF00;
    width: 400px; /* Wider window */
    max-height: 70vh;
    overflow: hidden;
    position: relative;
}

.window-header {
    background-color: #00FF00;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.window-header h3 {
    margin: 0;
    font-size: 16px;
    color: #FFFFFF; /* White text color */
}

.window-header {
    background-color: #00FF00;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.window-header h3 {
    margin: 0;
    font-size: 16px;
}

.window-content {
    padding: 10px;
    overflow: auto;
    max-height: 900px;
    font-size: 14px;
}

#app-container {
    margin-left: 25%; /* Offset the container 15% to the right */
    margin-top: 29%;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%; /* Take up the right half of the screen */
    height: 100vh;
}

.slide-button {
    background-color: black;
    color: green;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -8px; /* Adjusted value to move the arrow to the right */
    transform: translateY(-50%);
    z-index: 1; /* Ensure the arrow is on top */
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
    transform: scaleX(-1); /* Invert the arrow */
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5; /* Light gray for contrast */
    display: flex;
    align-items: center;
    justify-content: center;
}

#iframe {
    border: none;
    width: 66.67vw; /* 2/3rds of the viewport width */
    height: 66.67vh; /* 2/3rds of the viewport height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden; /* Ensure content doesn't spill out with border-radius */
    transition: transform 0.3s ease-in-out;
}

#iframe:hover {
    transform: scale(1.03); /* Slight zoom effect on hover */
}