@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #121212;
}

.editor-container {
    width: 90%;
    max-width: 900px;
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #282828;
    border-bottom: 2px solid #444;
}

#file-name {
    flex: 1;
    padding: 10px;
    background: #333;
    border: none;
    color: #ddd;
    font-size: 16px;
    border-radius: 5px;
    outline: none;
}

#save-btn {
    background: #ff4081;
    border: none;
    color: white;
    padding: 10px 15px;
    margin-left: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

#save-btn:hover {
    background: #ff5a94;
}

#editor {
    height: 500px;
    width: 100%;
}
