/* Print button container */
.hangit-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.hangit-instructions {
    flex: 1;
}

.hangit-print-button {
    margin-left: 15px;
}

#hangit-print {
    cursor: pointer;
    padding: 8px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 14px;
}

#hangit-print:hover {
    background-color: #005177;
}

@media print {
    body * {
        visibility: hidden;
    }
    #the-showroom, #the-showroom * {
        visibility: visible !important;
    }
    #thehanging, #thehanging * {
        visibility: visible !important;
        display: block !important;
    }
    #theframe {
        visibility: visible !important;
        display: block !important;
        position: absolute !important;
    }
    #the-showroom {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
    }
    .hangit-container, .hangit-rooms, .hangit-loading {
        display: none !important;
    }
}
