body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #333;
}

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

li {
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

form {
    margin-top: 20px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

textarea {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
}

.CodeMirror {
    border: 1px solid #ddd;
    height: 300px;
    margin-bottom: 20px;
}

.ck-editor__editable {
    min-height: 200px;
}

.nav-bar {
    background-color: #333;
    overflow: hidden;
    margin-bottom: 20px;
}
.nav-bar a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
.nav-bar a:hover {
    background-color: #ddd;
    color: black;
}
.nav-bar a.active {
    background-color: #4CAF50;
    color: white;
}
.project-list {
    list-style-type: none;
    padding: 0;
}
.project-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}
.project-item button {
    margin-left: 10px;
}
