/**
 * SecuSeek Findings Initialization Styles
 * 
 * Styles for findings container and loader animations
 * 
 * @package SecuSeek
 * @since 1.0.0
 */

#secuseek-findings-container {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    min-height: 400px;
}

#secuseek-initialization-loader {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.98);
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#secuseek-initialization-loader > div {
    text-align: center;
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
    max-width: 280px;
    min-width: 200px;
}

#secuseek-initialization-loader .spinner {
    width: 45px;
    height: 45px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #22ad5a;
    border-radius: 50%;
    animation: secuseek-spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

#secuseek-initialization-loader p {
    margin: 0;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.3px;
}

@keyframes secuseek-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
