﻿/* ========================================
   APP STYLES - Interfejs Użytkownika
   (Loadery, Croppery, Layout Edytora)
   ======================================== */

/* === LOADING SPINNER === */
.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

/* === IMAGE CROPPER === */
/* Style dla narzędzia do przycinania zdjęć */

.cropper-crop-box {
    border: 3px solid #0f0dc4 !important; /* Ramka główna */
}

.cropper-dashed {
    border-color: #ff3700 !important; /* Linie pomocnicze */
    border-width: 2px !important;
}

.cropper-point {
    background-color: #0f0dc4 !important; /* Punkty uchwytu */
    width: 10px !important;
    height: 10px !important;
}

.cropper-line {
    background-color: #ff3700 !important; /* Siatka */
}

.cropper-view-box {
    outline: 2px solid #0f0dc4 !important;
    outline-color: #1976d2 !important;
}

.cropper-modal {
    background-color: rgba(0, 0, 0, 0.6) !important; /* Przyciemnienie tła */
}
