.wrap h1 { font-size:28px; margin-bottom:10px; color:#23282d; }
.wrap p { font-size:14px; color:#555; margin-bottom:15px; }
table.widefat { border-collapse: collapse; width: 100%; }
table.widefat th, table.widefat td { padding:10px 8px; text-align:left; border-bottom:1px solid #e1e1e1; vertical-align: middle; }
table.widefat th { background-color:#f7f7f7; color:#333; font-weight:600; }
table.widefat tr:nth-child(even) { background-color:#fafafa; }
table.widefat tr:hover { background-color:#f1f1f1; }
table.widefat td { color:#555; }
.wrap table.widefat td:last-child { word-break: break-word; max-width:400px; }
.wrap p strong { color:#0073aa; }

/* Success/Error/Warning/Info colors */
tr.success td { background-color:#dff0d8; color:#3c763d; }
tr.error td { background-color:#f2dede; color:#a94442; }
tr.warning td { background-color:#fff3cd; color:#856404; }
tr.info td { background-color:#d9edf7; color:#31708f; }
.checpifo-sidebar {
    margin-top: 50px;
}
/* Container */
.checpifo-wrap {
    display: flex;
    gap: 20px;
}

/* Main content */
.checpifo-main {
    flex: 3;
}

/* Error box */
.checpifo-error-box {
    background: #f2dede;
    padding: 15px;
    border-left: 5px solid #dc3232;
    margin-bottom: 20px;
    border-radius: 6px;
}

/* Cron status */
.checpifo-cron-status {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    border-radius: 6px;
}
.checpifo-cron-status h2 {
    margin-top: 0;
}
.checpifo-status-badge {
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Run form */
.checpifo-run-form {
    margin-top: 10px;
}

/* Stats cards */
.checpifo-stats-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    width: 30%;
}
.checpifo-card {
    flex: 1;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}
.checpifo-warning-card {
    background: #ff9800;
}
.checpifo-error-card {
    background: #dc3232;
}
.checpifo-card-number {
    font-size: 28px;
    font-weight: bold;
}

/* Sidebar */
.checpifo-sidebar {
    flex: 1;
}
.checpifo-sidebar-box {
    background: #f7f7f7;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}
.checpifo-coffee-btn {
    display: inline-block;
    background-color: #ff813f;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 5px;
}
.checpifo-coffee-note {
    margin-top: 5px;
    font-size: 0.85em;
    color: #555;
}

.checpifo-plugin-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checpifo-plugin-list li {
    margin: 0;
}

.checpifo-plugin-list a {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 14px;

    border-radius: 10px;

    background: #fff;
    border: 1px solid #e6e6e6;

    text-decoration: none;
    color: #1d2327;

    font-size: 13px;
    font-weight: 600;

    transition: all 0.2s ease;
    position: relative;
}

/* left accent line */
.checpifo-plugin-list a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #2271b1;
    border-radius: 10px 0 0 10px;
    opacity: 0.9;
}

/* hover */
.checpifo-plugin-list a:hover {
    transform: translateX(4px);
    border-color: #2271b1;
    box-shadow: 0 10px 20px rgba(34, 113, 177, 0.15);
    background: linear-gradient(135deg, #ffffff, #f5f9ff);
}