.spinner-border {
    width: 20px;
    height: 20px;
}

.required-label:after {
    content: "*";
    color: red;
    margin-left: 5px;
}

.choices__list--dropdown {
    z-index: 9999;
}

.form-check-info {
    font-size: large;
}

.is-normal {
    font-size: large;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px 12px;
    justify-items: center;
}

.image-card {
    text-align: center;
    transition: transform 0.2s;
    cursor: pointer;
    position: relative;
}

    .image-card:hover {
        transform: scale(1.8);
        z-index: 10000;
    }

.progress-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: #f8f9fa;
}


.rotate-img {
    animation-name: spinner;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 6s;
    transform-style: preserve-3d;
}

.clickable-thumbnail:hover {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
    transform: scale(1.02);
}

.progress-edit-img-card {
    width: 120px;
    height: 90px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-image-preview {
    border-style: dashed !important;
}

    .new-image-preview.has-image {
        border-style: solid !important;
        border-color: #28a745 !important;
    }

.delete-current-image-btn {
    top: -20px;
    right: -10px;
    padding: 2px 4px;
    font-size: 10px;
    z-index: 10;
}

@keyframes spinner {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}




