/* Daily Publishing Manager Pro - Styles */
:root {
    --dpm-primary: #4f46e5;
    --dpm-primary-hover: #4338ca;
    --dpm-bg-light: #f8fafc;
    --dpm-card-bg: #ffffff;
    --dpm-text-dark: #1e293b;
    --dpm-border: #e2e8f0;
}

body.dpm-dark-mode {
    --dpm-bg-light: #0f172a;
    --dpm-card-bg: #1e293b;
    --dpm-text-dark: #f8fafc;
    --dpm-border: #334155;
    background-color: var(--dpm-bg-light) !important;
    color: var(--dpm-text-dark) !important;
}

.dpm-wrapper {
    min-height: 100vh;
    background-color: var(--dpm-bg-light);
    padding: 30px 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.dpm-card {
    background: var(--dpm-card-bg);
    border: 1px solid var(--dpm-border);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    padding: 24px;
    margin-bottom: 24px;
}

.dpm-stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dpm-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dpm-btn-primary {
    background-color: var(--dpm-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
}
.dpm-btn-primary:hover {
    background-color: var(--dpm-primary-hover);
    color: #fff;
}

.dpm-medium-editor {
    border: none;
    outline: none;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify !important; /* Add this line here */
}

.dpm-title-input {
    font-size: 2.2rem;
    font-weight: 700;
    border: none;
    outline: none;
    width: 100%;
    margin-bottom: 20px;
    background: transparent;
}

/* Ensure published posts display with justified text - Aggressive Catch-All */
.entry-content p, 
.entry-content div,
.post-content p, 
.post-content div,
.dpm-post-content p,
.wp-block-post-content p,
.type-post p {
    text-align: justify !important;
}
