﻿.skeleton-wrapper {
    width: 100%;
    background: #f3f5f8;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    background: linear-gradient(90deg, #eee, #ddd, #eee);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 6px;
    align-self: center;
}

.skeleton-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    /*justify-content: space-between;*/
    justify-content: end;
}

.skeleton-input {
    background: linear-gradient(90deg, #eee, #ddd, #eee);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 8px;
    height: 45px;
}

    .skeleton-input.half {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 180px;
    }

    .skeleton-input.full {
        flex: 1 1 100%;
    }

.skeleton-button {
    width: 180px;
    height: 45px;
    background: linear-gradient(90deg, #eee, #ddd, #eee);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 8px;
    align-self: flex-end;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}
