.print-image-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.print-image-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
}

.print-image-button:hover {
    background-color: #005177;
}
@media print {
    .custom-print-image {
        width: 100%;
        max-width: 210mm; /* A4 kağıdının genişliği */
        height: auto;
    }
}