.code-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.codebox {
    background-color: black;
    color: white;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 5px;
    overflow-y: auto;
    box-sizing: border-box;
    border-radius: 8px;
    position: relative;
    white-space: pre;
}

@media (max-width: 768px) {
    .codebox {
        padding: 15px;
    }
}

.code-divider {
    width: 100%;
    height: 1px;
    background-color: #555;
    border: none;
    margin: 10px 0;
}

.copy-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #385c82;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}
