.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
}

.code-card {
    height: 600px;
    display: none;
}

.code-card.active {
    display: block;
}

.code-block {
    background: #2d2d2d;
    border-radius: 0.5rem;
    padding: 1rem;
    height: 400px;
    overflow-y: auto;
    color: #fff;
    font-family: monospace;
    white-space: pre;
    margin: 0;
    line-height: 1.2;
}

.copy-btn {
    margin-top: 25px;
}

.nav-buttons {
    position: absolute;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
}

.nav-buttons button {
    pointer-events: auto;
}

.prev-btn {
    float: left;
    margin-left: -50px;
}

.next-btn {
    float: right;
    margin-right: -50px;
}

.code-input {
    font-family: monospace;
    resize: vertical;
    min-height: 200px;
}