.eform-board-list-container,
.eform-board-data-container {
    padding: 20px;
    background: #fff;
    border: 1px solid #ccd0d4;
    margin-bottom: 20px;
}

.card {
    width: max-content;
}

.eform-board-table {
    width: max-content;
    border-collapse: collapse;
    font-size: 14px;
    border-spacing: 0;
}

.eform-board-table th,
.eform-board-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f1;
    text-align: left;
    vertical-align: middle;
    color: #3c434a;
}

.eform-board-table th {
    background-color: #f6f7f7;
    font-weight: 600;
    color: #2c3338;
    border-bottom: 2px solid #dcdcde;
}

.eform-board-table tr:hover {
    background-color: #f6f7f7;
}

.eform-board-table code {
    background: #f0f0f1;
    padding: 2px 5px;
    border-radius: 3px;
    display: inline-block;
    font-family: monospace;
}

/* Button Styles */
.eform-board-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
    line-height: 2.15384615;
    min-height: 30px;
    border: 1px solid #2271b1;
    cursor: pointer;
    font-weight: 500;
    transition: background .1s ease-in-out;
}

.eform-board-btn:hover,
.eform-board-btn:focus {
    background-color: #135e96;
    border-color: #135e96;
    color: #fff;
}

.eform-board-btn-delete {
    display: inline-block;
    padding: 4px 8px;
    background-color: #d63638;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    border: 1px solid #d63638;
    cursor: pointer;
    line-height: 1.5;
}

.eform-board-btn-delete:hover {
    background-color: #a0282a;
    border-color: #a0282a;
    color: #fff;
}

/* ========================================
   FRONTEND DASHBOARD STYLES
   ======================================== */

.jeus-dashboard-wrapper {
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Sidebar */
.jeus-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #1e2a3a 0%, #2d3e50 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
}

.jeus-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.jeus-sidebar-header .dashicons {
    font-size: 1.0rem;
    width: 1.0rem;
    height: 1.0rem;
    line-height: 1.0rem;
}

.jeus-sidebar-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.jeus-sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.jeus-nav-group {
    margin-bottom: 20px;
}

.jeus-nav-group-title {
    padding: 8px 20px;
    font-size: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    font-weight: 600;
}

.jeus-nav-item {
    display: flex;
    align-items: center;
    padding: 6px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s;
    gap: 6px;
    cursor: pointer;
    font-size: 1.0rem;
}

.jeus-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.jeus-nav-item.active {
    background: #3b82f6;
    color: #fff;
}

.jeus-nav-item .dashicons {
    font-size: 1.0rem;
    width: 1.0rem;
    height: 1.0rem;
    line-height: 1.0rem;
}

.jeus-sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.jeus-user-avatar {
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 8px;
}

.jeus-user-info {
    flex: 1;
}

.jeus-user-name {
    font-weight: 600;
    font-size: 14px;
}

.jeus-user-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Main Content */
.jeus-main-content {
    flex: 1;
    width: max-content;
    background: #f8fafc;
    padding: 30px;
    overflow-x: auto;
}

.jeus-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.jeus-breadcrumb {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

.jeus-breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
}

.jeus-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 30px 0;
}

.jeus-header-actions {
    display: flex;
    gap: 10px;
}

.jeus-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
}

.jeus-btn-outline {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
}

.jeus-btn-outline:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.jeus-btn-primary {
    background: #3b82f6;
    color: #fff;
}

.jeus-btn-primary:hover {
    background: #2563eb;
    color: #fff;
}

/* Stats Cards */
.jeus-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.jeus-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.jeus-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.jeus-stat-icon.blue {
    background: #dbeafe;
    color: #3b82f6;
}

.jeus-stat-icon.green {
    background: #dcfce7;
    color: #22c55e;
}

.jeus-stat-icon.yellow {
    background: #fef3c7;
    color: #f59e0b;
}

.jeus-stat-icon.purple {
    background: #f3e8ff;
    color: #a855f7;
}

.jeus-stat-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.jeus-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.jeus-stat-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.jeus-stat-change {
    font-size: 13px;
}

.jeus-stat-change.positive {
    color: #22c55e;
}

.jeus-stat-change.negative {
    color: #ef4444;
}

/* Content Grid */
.jeus-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

/* Posts Table */
.jeus-posts-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.jeus-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.jeus-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.jeus-posts-table {
    width: 100%;
    border-collapse: collapse;
}

.jeus-posts-table th,
.jeus-posts-table td {
    padding: 14px 24px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.jeus-posts-table th {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    background: #f8fafc;
}

.jeus-posts-table td {
    font-size: 14px;
    color: #475569;
}

.jeus-posts-table tr:hover {
    background: #f8fafc;
}

.jeus-status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.jeus-status-badge.published {
    background: #dcfce7;
    color: #16a34a;
}

.jeus-status-badge.review {
    background: #fef3c7;
    color: #d97706;
}

.jeus-status-badge.draft {
    background: #f1f5f9;
    color: #64748b;
}

/* Activity Feed */
.jeus-activity-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.jeus-activity-item {
    display: flex;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.jeus-activity-item:last-child {
    border-bottom: none;
}

.jeus-activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jeus-activity-icon.add {
    background: #dbeafe;
    color: #3b82f6;
}

.jeus-activity-icon.complete {
    background: #dcfce7;
    color: #22c55e;
}

.jeus-activity-icon.message {
    background: #f3e8ff;
    color: #a855f7;
}

.jeus-activity-content {
    flex: 1;
}

.jeus-activity-text {
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 4px;
}

.jeus-activity-time {
    font-size: 12px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
    .jeus-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .jeus-dashboard-wrapper {
        flex-direction: column;
    }

    .jeus-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .jeus-main-content {
        padding: 20px;
    }

    .jeus-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}