
.trstemp-import-step {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
    border-radius: 20px;
}

.import-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    
}

.import-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    flex-direction: column;
}

.import-logo {
    margin-bottom: 20px;
}

.import-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.import-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.import-progress-container {
    margin: 10px 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.progress-circle {
    position: relative;
}

.progress-circle svg {
    transform: rotate(-90deg);
}

.progress-circle #progress-bar {
    transition: stroke-dashoffset 0.5s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.import-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  
    text-align: left;
    gap: 20px;
}

.status-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.status-item.active {
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid #667eea;
}

.status-item.completed {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
}

.status-item.completed .status-icon {
    color: #28a745;
}

.status-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
}

.status-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.status-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.import-tips {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    /* margin: 30px 0; */
}

.import-tips h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.tip-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.import-success {
    text-align: center;
}

.success-animation {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.import-success h2 {
    font-size: 32px;
    font-weight: 700;
    color: #28a745;
    margin: 0 0 15px 0;
}

.import-success p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.success-actions .btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.success-actions .btn-primary {
    background: #28a745;
    color: white;
}

.success-actions .btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.success-actions .btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #28a745;
}

.success-actions .btn-secondary:hover {
    background: #f8f9fa;
    border-color: #1e7e34;
}

.next-steps {
    text-align: left;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
}

.next-steps h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.next-step {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.next-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.next-step p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.import-error {
    text-align: center;
}

.error-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.import-error h2 {
    font-size: 28px;
    font-weight: 700;
    color: #dc3545;
    margin: 0 0 15px 0;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .import-container {
        padding: 30px 20px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
}


.trstemp-import-header-progress{
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Hide all scrollbars in the plugin interface */
#trstemp-wizard-container,
.trstemp-wizard-content,
.trstemp-import-step,
#wpbody-content {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#trstemp-wizard-container::-webkit-scrollbar,
.trstemp-wizard-content::-webkit-scrollbar,
.trstemp-import-step::-webkit-scrollbar,
#wpbody-content::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}