#img-container-chord {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px; 
    height: 100%;
    margin: 0 auto;
    position: relative;
}

#img-note {
    width: 50%;
    height: 50%;
    aspect-ratio: 4/3; /* 4:3 aspect ratio */
    object-fit: contain;
}

#img-chord {
    width: 25%;
    height: 25%;
    aspect-ratio: 2/3;
}

.pagination-controls { 
    display: flex;
    justify-content: center;
    gap: 16px;  
    margin: 24px 0;          
}

/* Mobile Responsive Layout generated by Claude 3.5 Sonnet*/
@media (max-width: 767px) {
    #img-container-chord {
        max-width: 100%;
        flex-direction: column;
        gap: 20px;
    }
    
    #img-note {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
    
    #img-chord {
        width: 80%;
        height: auto;
        max-height: 200px;
    }
    
    .pagination-controls {
        gap: 10px;
        margin: 20px 0;
    }
    
    .pagination-controls button {
        padding: 10px 15px;
        font-size: 14px;
    }
}