body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 2rem auto;
}

.code-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.code-block-container {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    overflow: hidden;
}

.code-and-button {
    position: relative;
    display: flex; /* Add display flex */
    align-items: center; /* Vertically align items */
}

pre {
    background-color: #f4f4f4;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 0;
    display: inline-block;
}

button {
    background-color: #3498db;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
    margin-left: 0; /* Remove margin-left from the button */
    height: 100%; /* Set the button height to 100% */
}
