body {
    height: 400%;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}
.container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.description-section {
    width: 40%;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.description-section h2 {
    margin-top: 0;
}
.code-section {
    flex: 1;
    margin-left: 20px;
}
textarea {
    width: 100%;
    height: 300px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    resize: none;
    font-family: monospace;
}
button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px; /* Add some spacing between buttons */
}

button:hover {
    background-color: #45a049;
}
.output {
    margin-top: 20px;
    padding: 10px;
    background-color: #e8f5e9;
    border: 1px solid #4CAF50;
    border-radius: 5px;
    font-size: 16px;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.warning {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}
header {
    background-color: #4CAF50;
    padding: 7px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar .logo {
    font-size: 23px;
    font-weight: 700; /* Bold weight for the logo text */
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 700; /* Bold for navigation links */
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a i {
    font-size: 18px;
}

