.iron-security-dashboard-wrapper {
    display: flex;
}

.iron-security-main-container {
    display: flex;
    flex: 1;
    gap: 20px;
    min-height: calc(100vh - 100px);
}



.iron-security-content.transitioning {
    opacity: 0.5;
    filter: blur(2px);
    transform: translateY(10px);
    pointer-events: none;
}

.iron-security-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    font-size: 16px;
    color: #666;
    animation: fadeIn 0.3s ease-in-out;
}

/* Add a subtle animation to the loading text */
.iron-security-loading::after {
    content: '...';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
    100% { content: '.'; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab transition effects */
.iron-security-tab {
    transition: all 0.2s ease-in-out;
}

.iron-security-tab:hover {
    transform: translateY(-1px);
}

.iron-security-tab.active {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Smooth transition for tab content */
.iron-security-tabs {
    transition: all 0.3s ease-in-out;
}

/* Add a subtle scale effect to the content when transitioning */
.iron-security-content > * {
    transition: transform 0.3s ease-in-out;
}

.iron-security-content.transitioning > * {
    transform: scale(0.98);
}


.iron-security-loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    background: #f0f0f1;
    padding: 20px;
}

.iron-security-loading-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.iron-security-loading-content h2 {
    margin: 20px 0 10px;
    color: #1d2327;
    font-size: 24px;
}

.iron-security-loading-content p {
    color: #646970;
    margin-bottom: 30px;
}

.iron-security-loading-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.spinner-circle {
    width: 12px;
    height: 12px;
    background: #2271b1;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.spinner-circle:nth-child(1) {
    animation-delay: -0.32s;
}

.spinner-circle:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
    }
    40% { 
        transform: scale(1);
    }
}

.iron-security-loading-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    text-align: left;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f6f7f7;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.loading-step:hover {
    background: #f0f0f1;
    transform: translateX(5px);
}

.loading-step .dashicons {
    color: #2271b1;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.loading-step span:last-child {
    color: #1d2327;
    font-size: 14px;
} 