.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.spinner-path {
    stroke: #0073aa;
    stroke-linecap: round;
    animation: spinner-rotate 1.2s linear infinite;
}

@keyframes spinner-rotate {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* Плавное исчезновение */
.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Плавное появление */
.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.spinner-path {
    stroke: #0073aa;
    stroke-linecap: round;
    animation: spinner-rotate 1.2s linear infinite;
}

@keyframes spinner-rotate {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}


.fssp-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: .5rem;
}

.fssp-results-table th,
.fssp-results-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.fssp-results-table th {
    background-color: #f2f2f2;
}

.continue-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.continue-btn:hover {
    background-color: var(--hover);
}

.fssp-results-table tr.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.form-disabled-message {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.loading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.loading-text {
    margin: 0;
    color: #555;
    font-size: 14px;
}