body {
    margin: 0;
    background-color: #0e0e0e;
    font-family: Consolas, monospace;
    color: #eee;
}

#forge {
    display: flex;
    height: 100vh;
}

#sidebar {
    width: 220px;
    background: #1a1a1a;
    padding: 15px;
    border-right: 1px solid #333;
}

#sidebar h2 {
    color: #4cc2ff;
    text-align: center;
}

#sidebar ul {
    list-style: none;
    padding: 0;
}

#sidebar li {
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
}

#sidebar li:hover {
    background: #333;
}

#main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#toolbar {
    background: #181818;
    padding: 10px;
    border-bottom: 1px solid #333;
}

#editor-area {
    flex: 1;
    padding: 20px;
}
#explorer-title {
    color: #777;
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 20px;
}

#file-explorer {
    background: #111;
    padding: 10px;
    border: 1px solid #2a2a2a;
    height: 300px;
    overflow-y: auto;
    font-size: 13px;
}

.file {
    padding: 4px 0;
    cursor: pointer;
}

.file:hover {
    background: #2a2a2a;
}

.folder {
    font-weight: bold;
    cursor: pointer;
    margin-top: 5px;
}

.folder:hover {
    background: #2a2a2a;
}

.folder-contents {
    margin-left: 15px;
    display: none;
}