.iron-security-dashboard-wrapper {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    border: none;
    margin: 20px auto;
    max-width: 1500px;
}

.iron-security-banners {
    margin-left: 20px;
    flex-shrink: 0;
}

.iron-security-main-container {
    display: flex;
    flex: 1;
    max-width: calc(100% - 320px);
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e2e4e7;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    min-height: 600px;
}

.iron-security-sidebar {
    width: 220px;
    background: #23282d;
    padding: 0 0;
    border-radius: 6px 0 0 6px;
    flex-shrink: 0;
}

.iron-security-content {
    flex: 1;
    border-radius:0 6px 6px 0;
    background: #fff;
    min-height: 600px;
    overflow: auto;
}

.iron-security-content-header {
    padding: 20px;
    border-radius:0 6px 0 0 ;
    border-bottom: 1px solid #e2e4e7;
    background: #fff;
}

.iron-security-content-header h2 {
    margin: 0;
    font-size: 1.3em;
    font-weight: 600;
    color: #1d2327;
}

.tab-button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: #b4b9be;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.tab-button:first-child{
    border-radius:6px 0 0 0;
}

.tab-button .dashicons {
    margin-right: 10px;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.tab-button:hover {
    background: #32373c;
    color: #fff;
}

.tab-button.active {
    background: #0073aa;
    color: #fff;
    border-left-color: #fff;
}

.iron-security-general-settings,
.iron-security-login-logout-settings,
.iron-security-security-features,
.iron-security-logs {
    padding: 0;
}

.iron-security-general-settings .components-card__body{
    border-radius:0 0 6px 0 !important;
}

.components-card {
    margin-bottom: 24px;
    border: 1px solid #e2e4e7;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    background: #fff;
}

.components-card__header {
    padding: 16px 24px;
    border-bottom: 1px solid #e2e4e7;
    background: #f0f0f1;
}

.components-card__header h2 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #1e1e1e;
}

.components-card__body {
    padding: 24px;
    background: #fff;
}

.components-toggle-control,
.components-text-control,
.components-range-control {
    margin-bottom: 24px;
}

.components-base-control__help {
    margin-top: 4px;
    color: #757575;
    font-style: italic;
}

/* Log controls styling */
.log-controls {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.wp-list-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.wp-list-table th,
.wp-list-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid #e2e4e7;
}

.wp-list-table th {
    font-weight: 600;
    background: #f8f9f9;
}

/* Custom Setting Toggle Styles */
.iron-security-setting-toggle {
    padding: 20px;
    border: 1px solid #e2e4e7;
    background: #fff;
    margin-bottom: 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.iron-security-setting-toggle:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.setting-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.setting-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e1e1e;
}

.setting-description {
    font-size: 13px;
    color: #757575;
    margin: 0;
    line-height: 1.5;
    max-width: 90%;
}

/* Toggle Switch Styles */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-left: 15px;
}

.toggle-switch.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch input:disabled + .slider {
    cursor: not-allowed;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccd0d4;
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider {
    background-color: #2271b1;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2271b1;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.iron-security-setting-toggle.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loading state indicator */
.toggle-switch.disabled .slider:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border: 2px solid rgba(0,0,0,0.1);
    border-top-color: #2271b1;
    border-radius: 50%;
    animation: toggle-loading 0.8s linear infinite;
}

@keyframes toggle-loading {
    to {
        transform: rotate(360deg);
    }
}

/* Active State Styles */
.iron-security-setting-toggle.active {
    border-color: #2271b1;
    background-color: #f0f6fc;
}

/* WordPress Toggle Control Override */
.components-form-toggle {
    position: relative;
    display: inline-block;
}

.components-form-toggle .components-form-toggle__track {
    border: 1px solid #757575;
    border-radius: 9px;
    transition: all 0.2s ease;
}

.components-form-toggle .components-form-toggle__thumb {
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.components-form-toggle.is-checked .components-form-toggle__track {
    background-color: #0073aa;
    border-color: #0073aa;
}

/* Notification Styles */
.notice {
    background: #fff;
    border-left: 4px solid #72aee6;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
    margin: 5px 0 15px;
    padding: 1px 12px;
    border-radius: 4px;
}

.notice p {
    margin: 0.5em 0;
    padding: 2px;
    font-size: 13px;
}

.notice-success {
    border-left-color: #00a32a;
}

.notice-success p {
    color: #1e1e1e;
}

.notice-error {
    border-left-color: #d63638;
}

.notice-error p {
    color: #1e1e1e;
}

/* Animation for notifications */
@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notice {
    animation: slideIn 0.3s ease-out;
}

.iron-security-notification {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 500px;
    width: calc(100% - 48px);
    animation: slideUp 0.3s ease-out;
    transition: all 0.3s ease;
}

.iron-security-notification.success {
    background-color: #00a32a;
    color: white;
}

.iron-security-notification.error {
    background-color: #cc1818;
    color: white;
}

.iron-security-notification .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.iron-security-notification .message {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.4;
}

.iron-security-notification .close-button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.iron-security-notification .close-button:hover {
    opacity: 1;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Hide WordPress default notices when our notification is showing */
.iron-security-notification-active .notice {
    display: none !important;
}

/* Login/Logout Settings Styles */
.wpironis-settings-section {
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 24px;
}

.wpironis-settings-section h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.3em;
    font-weight: 600;
}

.wpironis-setting-group {
    margin-bottom: 24px;
}

.wpironis-custom-url-input {
    margin-top: 16px;
    margin-left: 32px;
    padding: 16px;
    margin-bottom:16px;

    background: #f9f9f9;
    border-radius: 4px;
}

.wpironis-input-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.wpironis-input-group label {
    flex: 0 0 120px;
    padding-top: 6px;
    font-weight: 500;
}

.wpironis-input-group input[type="text"] {
    flex: 1;
    min-width: 200px;
}

.wpironis-input-group .button {
    margin-left: 8px;
}

.wpironis-custom-url-input .description {
    margin: 8px 0 0;
    color: #666;
    font-size: 13px;
    font-style: italic;
}

/* Welcome Dashboard Styles */
.iron-security-welcome-dashboard {
    padding: 20px;
}

/* Welcome card styling */
.welcome-card {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.welcome-header {
    display: flex;
    align-items: center;
    padding: 10px;
}

.welcome-icon {
    background: #2271b1;
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.welcome-icon .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
}

.welcome-content h2 {
    margin: 0 0 10px;
    color: #1d2327;
    font-size: 24px;
}

.welcome-description {
    margin: 0;
    color: #50575e;
    font-size: 14px;
    line-height: 1.5;
}

/* Security recommendations card */
.security-recommendations-card {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
}

.security-recommendations-card .components-card__header {
    display: block;
    background: #f0f6fc;
}

.security-recommendations-card .components-card__header h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #1d2327;
}

.security-recommendations-card .components-card__header p {
    margin: 0;
    color: #50575e;
    font-size: 13px;
}

.security-recommendations {
    padding: 10px;
}

/* About security card */
.about-security-card {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
}

.about-security-card .components-card__header {
    background: #f0f6fc;
}

.about-security-card .components-card__header h3 {
    margin: 0;
    font-size: 18px;
    color: #1d2327;
}

.security-info {
    color: #50575e;
    font-size: 14px;
    line-height: 1.6;
}

.security-benefits-list {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.security-benefits-list li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.security-benefits-list .dashicons {
    position: absolute;
    left: 0;
    top: 2px;
    color: #d63638;
}

.security-thank-you {
    font-style: italic;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

/* Recent logs card */
.recent-logs-card {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
}

.recent-logs-card .components-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f0f6fc;
}

.recent-logs-card .components-card__header h3 {
    margin: 0;
    font-size: 18px;
    color: #1d2327;
}

.recent-logs-table-container {
    overflow-x: auto;
}

.recent-logs-table {
    width: 100%;
    border-collapse: collapse;
}

.recent-logs-table thead th {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #e2e4e7;
    font-weight: 600;
    background: #f8f9f9;
}

.recent-logs-table tbody td {
    padding: 10px;
    border-bottom: 1px solid #f0f0f1;
    font-size: 13px;
}

.recent-logs-table .log-row:hover {
    background-color: #f8f9f9;
}

.log-status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.log-status-badge.success {
    background-color: #edfaef;
    color: #00a32a;
}

.log-status-badge.error {
    background-color: #fcefef;
    color: #d63638;
}

.log-status-badge.warning {
    background-color: #fcf9e8;
    color: #dba617;
}

.log-status-badge.info {
    background-color: #f0f6fc;
    color: #2271b1;
}

.logs-loading, .no-logs {
    padding: 30px;
    text-align: center;
    color: #757575;
}

.logs-loading .spinner {
    float: none;
    margin: 0 auto 10px;
}

/* Media queries for responsive layout */
@media screen and (max-width: 960px) {
    .iron-security-dashboard-wrapper {
        flex-direction: column-reverse;
    }
    
    .iron-security-banners {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #dcdcde transparent;
    }
    
    /* Custom scrollbar styling for Webkit browsers */
    .iron-security-banners::-webkit-scrollbar {
        height: 8px;
    }
    
    .iron-security-banners::-webkit-scrollbar-track {
        background: #f0f0f1;
        border-radius: 4px;
    }
    
    .iron-security-banners::-webkit-scrollbar-thumb {
        background-color: #dcdcde;
        border-radius: 4px;
    }
    
    .iron-security-banner {
        flex: 0 0 300px;
        max-width: 300px;
        margin-bottom: 0;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .iron-security-main-container {
        max-width: 100%;
    }
}

@media screen and (max-width: 782px) {
    .iron-security-main-container {
        flex-direction: column;
    }
    
    .iron-security-sidebar {
        width: 100%;
        border-radius: 6px 6px 0 0;
    }
    
    .iron-security-content {
        border-radius: 0 0 6px 6px;
    }
    
    .tab-button {
        padding: 12px 15px;
    }
    
    .iron-security-content-header {
        padding: 15px;
    }
    
    .iron-security-welcome-dashboard {
        padding: 10px;
    }
    
    .welcome-header {
        flex-direction: column;
        text-align: center;
    }
    
    .welcome-icon {
        margin: 0 0 15px;
    }
    
    .security-recommendations-card .components-card__header,
    .recent-logs-card .components-card__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .recent-logs-card .components-card__header .card-action {
        margin-top: 10px;
    }
    
    /* Ensure tables are scrollable on mobile */
    .recent-logs-table-container {
        margin: 0 -15px;
        padding: 0 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .iron-security-banner-cta {
        padding: 10px 15px; /* Larger tap target for mobile */
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    .iron-security-banners {
        gap: 15px;
    }
    
    .iron-security-banner {
        flex: 0 0 220px;
        max-width: 220px;
        padding: 15px;
    }
    
    .iron-security-banner-header {
        font-size: 14px;
    }
    
    .iron-security-banner-content {
        font-size: 12px;
    }
    
    .iron-security-banner-cta {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

/* Banner styles */
.iron-security-banner {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e2e4e7;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    margin-bottom: 20px;
    padding: 20px;
    text-align: left;
    width: 300px;
}

.iron-security-banner-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d2327;
}

.iron-security-banner-content {
    font-size: 13px;
    color: #50575e;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Style links within banner content */
.iron-security-banner-content a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.iron-security-banner-content a:hover {
    color: #135e96;
    text-decoration: underline;
}

/* Special link styling for different banner types */
.iron-security-banner.Standard .iron-security-banner-content a {
    color: #2271b1;
}

.iron-security-banner.promo .iron-security-banner-content a {
    color: #996500;
    font-weight: 600;
}

.iron-security-banner.promo .iron-security-banner-content strong {
    color: #333;
}

.iron-security-banner.update .iron-security-banner-content a {
    color: #00701a;
}

/* Plugin list formatting */
.iron-security-banner.promo .iron-security-banner-content {
    text-align: left;
    line-height: 1.6;
}

/* Plugin item styling */
.iron-security-banner.promo .iron-security-banner-content strong a {
    display: inline-block;
    margin-bottom: 4px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(153, 101, 0, 0.3);
}

.iron-security-banner.promo .iron-security-banner-content strong a:hover {
    border-bottom-color: #dba617;
    text-decoration: none;
}

.iron-security-banner.feedback {
    background: #f0f6fc;
    border-color: #72aee6;
}

.iron-security-banner.promo {
    background: #fff8e5;
    border-color: #dba617;
    padding-bottom: 15px;
}

.iron-security-banner.update {
    background: #f6fff8;
    border-color: #00a32a;
}

.iron-security-banner img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
}

.iron-security-banner-cta {
    display: inline-block;
    background: #2271b1;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.iron-security-banner-cta:hover {
    background: #135e96;
    color: #fff;
}

/* Support Page Styles */
.iron-security-support-container {
    padding: 20px;
}

.iron-security-support-intro {
    text-align: center;
    margin-bottom: 30px;
}

.iron-security-support-logo {
    margin: 0 auto 15px;
    width: 80px;
    height: 80px;
    background-color: #23282d;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.iron-security-support-logo.welcome {
    margin: 0 auto 15px;
    width: 80px;
    height: 80px;
    background-color: #23282d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iron-security-support-logo.welcome img{
    max-width: 60%;
}

.iron-security-support-logo img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.iron-security-support-intro h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #23282d;
}

.iron-security-support-intro p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
    line-height: 1.6;
}

.iron-security-support-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.iron-security-support-card {
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
    padding: 25px;
    width: calc(33.33% - 20px);
    min-width: 240px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.iron-security-support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.card-icon .dashicons {
    font-size: 30px;
    width: 30px;
    height: 30px;
    color: #2271b1;
}

.iron-security-support-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #23282d;
}

.iron-security-support-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.4;
}

.support-card-link {
    display: inline-block;
    color: #2271b1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.support-card-link:hover {
    color: #135e96;
    text-decoration: underline;
}

.iron-security-contact-form-container {
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
    padding: 25px;
    max-width: 700px;
    margin: 0 auto 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.iron-security-contact-form-container h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #23282d;
    text-align: center;
}

.iron-security-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-row label {
    font-weight: 500;
    color: #23282d;
}

.form-row input,
.form-row textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.iron-security-submit-button {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    align-self: flex-start;
    margin-top: 10px;
}

.iron-security-submit-button:hover {
    background: #135e96;
}

.iron-security-submit-button .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.iron-security-message-sent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #edfaef;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
}

.iron-security-message-sent .dashicons {
    color: #00a32a;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.iron-security-message-sent p {
    color: #2c3338;
    margin: 0;
    font-size: 15px;
}

.iron-security-security-guarantee {
    background: #f0f6fc;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2271b1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon .dashicons {
    color: #fff;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.guarantee-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #23282d;
}

.guarantee-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Support page responsive styles */
@media screen and (max-width: 782px) {
    .iron-security-support-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .iron-security-support-card {
        width: 100%;
        max-width: 400px;
    }
    
    .iron-security-security-guarantee {
        flex-direction: column;
        text-align: center;
    }
}


.iron-security-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 4px;
}

.iron-security-pagination .pagination-button,
.iron-security-pagination .pagination-number {
    background: #f6f7f7;
    border: 1px solid #c3c4c7;
    color: #2271b1;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s, border-color 0.2s;
}

.iron-security-pagination .pagination-button:hover,
.iron-security-pagination .pagination-number:hover {
    background: #f0f0f1;
    border-color: #8c8f94;
}

.iron-security-pagination .pagination-button:disabled,
.iron-security-pagination .pagination-number:disabled {
    background: #f6f7f7;
    color: #999;
    cursor: default;
    border-color: #dcdcde;
}

.iron-security-pagination .pagination-number.active {
    background: #2271b1;
    color: #fff;
    font-weight: bold;
    border-color: #2271b1;
    cursor: default;
}

.iron-security-pagination .pagination-ellipsis {
    padding: 6px 10px;
    color: #666;
    font-size: 14px;
}

.iron-security-tab-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 2rem;
}

.iron-security-tab-loading .iron-security-loading-spinner {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.iron-security-tab-loading .spinner-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #2271b1;
    animation: bounce 0.5s ease-in-out infinite;
}

.iron-security-tab-loading .spinner-circle:nth-child(2) {
    animation-delay: 0.1s;
}

.iron-security-tab-loading .spinner-circle:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* System Information Section */
.system-info-card {
    margin-bottom: 20px;
}

.system-info-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.system-info-error {
    padding: 12px;
    background-color: #f9f9f9;
    border-left: 3px solid #dc3232;
    margin-bottom: 12px;
    font-size: 13px;
}

.system-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.system-info-item {
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 12px;
    position: relative;
    border-left: 3px solid #bbb;
    transition: background-color 0.2s ease;
}

.system-info-item:hover {
    background-color: #f0f0f0;
}

.system-info-item.good {
    border-left-color: #46b450;
}

.system-info-item.warning {
    border-left-color: #ffb900;
}

.system-info-item.error {
    border-left-color: #dc3232;
}

.system-info-item .info-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.system-info-item .info-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-info-item .info-icon .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.system-info-item.good .info-icon .dashicons {
    color: #46b450;
}

.system-info-item.warning .info-icon .dashicons {
    color: #ffb900;
}

.system-info-item.error .info-icon .dashicons {
    color: #dc3232;
}

.system-info-item h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.system-info-item .info-content {
    padding-left: 28px; /* Align with header text */
}

.system-info-item .info-value {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 6px 0;
}

.system-info-item .info-message {
    margin: 6px 0 0 0;
    font-size: 12px;
    line-height: 1.4;
}

.system-info-item .info-message.warning {
    color: #b45f06;
}

.system-info-item .info-message.good {
    color: #0a7b2e;
}

@media (max-width: 782px) {
    .system-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Minimal Dashboard Header */
.iron-security-dashboard-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #e2e4e7;
}

.iron-security-logo {
    margin-right: 15px;
}

.iron-security-logo img {
    display: block;
    width: 40px;
    height: 40px;
}

.iron-security-title h1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    color: #1d2327;
}

/* Security Score styles */
.iron-security-dashboard-score-section {
    margin-bottom: 20px;
}

.iron-security-score-container {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.iron-security-score-title {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.iron-security-score-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .iron-security-score-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .iron-security-score-circle-wrapper {
        flex: 0 0 auto;
        margin-right: 30px;
    }
    
    .iron-security-score-details {
        flex: 1;
        text-align: left;
        align-items: flex-start;
        padding-top: 10px;
    }
}

.iron-security-score-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.iron-security-security-level {
    margin-bottom: 15px;
    text-align: center;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.iron-security-security-level.excellent {
    background-color: rgba(76, 175, 80, 0.15);
    color: #2e7d32;
}

.iron-security-security-level.high {
    background-color: rgba(139, 195, 74, 0.15);
    color: #558b2f;
}

.iron-security-security-level.medium {
    background-color: rgba(255, 193, 7, 0.15);
    color: #f57f17;
}

.iron-security-security-level.low {
    background-color: rgba(244, 67, 54, 0.15);
    color: #c62828;
}

.iron-security-score-warning {
    display: flex;
    align-items: center;
    background-color: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
    width: 100%;
}

.iron-security-score-warning .dashicons {
    margin-right: 8px;
    color: #f57f17;
}

.iron-security-score-breakdown {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.breakdown-dot {
    margin-right: 8px;
}

.breakdown-label {
    font-weight: 500;
    margin-right: 8px;
    min-width: 70px;
}

.breakdown-value {
    margin-right: 5px;
}

.breakdown-points {
    color: #666;
    margin-left: auto;
}

.iron-security-score-recommendation {
    background-color: #e7f5ff;
    color: #0c5460;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    margin-top: 15px;
}

.iron-security-score-recommendation p {
    margin: 0;
}

/* Dashboard layout improvements */
.iron-security-dashboard-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .iron-security-security-score-wrapper .iron-security-score-container {
        box-shadow: none;
        padding: 0;
        margin-bottom: 0;
    }
}
