body {
    background-color: #1e1e1e;
    color: #dcdcdc;
    font-family: 'Fira Code','Courier New', Courier, monospace;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    font-size: 16px;
      margin: 0;
    padding: 0;
    background-color: #121212;
}

.code-container {
    background-color: #121212;
    border: 1px solid #444;
   
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    max-width: 800px;
    width: 100%;
    
    padding: 1rem;
    box-sizing: border-box;
    overflow-x: auto;
}
.code-container pre {
    background-color: #1e1e1e;
    color: #d4d4d4;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre;
}
/*
pre {
    margin: 0;
    overflow-x: auto;
    white-space: pre-wrap;
    line-height: 1.6;
}*/

.class-name {
    color: #4EC9B0;
}

.string {
    color: #CE9178;
}

.function {
    color: #C586C0;
}

.function-name {
    color: #DCDCAA;
}

/* Responsive font size for smaller devices */
@media screen and (max-width: 600px) {
    .code-container pre {
        font-size: 0.8rem;
    }
}