.modal-personalization {
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}



#canvas {
    max-width: -webkit-fill-available;
    max-width: -moz-available;
    width: -webkit-fill-available;
    width: -moz-available;
}

.selectable-image.border-primary {
    border-color: #007cba;
    border-width: 3px;
}

/* Custom font faces - same as your Vue component */
@font-face {
    font-family: 'Atlane';
    src: url('../fonts/Atlane.eot');
    src: url('../fonts/Atlane.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Atlane.woff2') format('woff2'),
        url('../fonts/Atlane.woff') format('woff'),
        url('../fonts/Atlane.ttf') format('truetype'),
        url('../fonts/Atlane.svg#Atlane') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gelato';
    src: url('../fonts/GelatoRegular.eot');
    src: url('../fonts/GelatoRegular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GelatoRegular.woff2') format('woff2'),
        url('../fonts/GelatoRegular.woff') format('woff'),
        url('../fonts/GelatoRegular.ttf') format('truetype'),
        url('../fonts/GelatoRegular.svg#GelatoRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Add other font faces as needed */

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}