body {
    margin: 0;
    font-family: Consolas, monospace;
    background: #061a2b;
    color: #00d4ff;
}

.ide-container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-bar {
    background: #003b5c;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar button {
    background: #00bfff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.main-area {
    flex: 1;
    display: flex;
}

.sidebar {
    width: 260px;
    background: #001f33;
    padding: 15px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar li:hover {
    background: #004c7a;
}

.workspace {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}