/* MM Calendar - Custom Styles */

[x-cloak] {
    display: none !important;
}

/* Imprint preview styling */
.imprint-preview {
    font-family: 'Arial', sans-serif;
    background: white;
    border: 1px solid #e5e7eb;
    padding: 1rem;
}

/* Photo circle */
.photo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #d1d5db;
}

.photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Calendar preview aspect ratio */
.calendar-preview {
    aspect-ratio: 7.75 / 6.75;
}

.calendar-preview-small {
    aspect-ratio: 6 / 5;
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print styles for preview */
@media print {
    .no-print {
        display: none !important;
    }

    .imprint-preview {
        border: none;
        box-shadow: none;
    }
}
