/* Freelance Reporter Styles */

/* Auth Tabs (Login/Register) */
.lnm-reporter-auth {
    max-width: 600px;
    margin: 20px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lnm-auth-tabs {
    display: flex;
    list-style: none;
    margin: 0 0 35px 0;
    padding: 0;
    border-bottom: 2px solid #e0e0e0;
}

.lnm-auth-tabs li {
    margin: 0;
    padding: 0;
}

.lnm-auth-tabs li a {
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    color: #666;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 16px;
}

.lnm-auth-tabs li.active a,
.lnm-auth-tabs li a:hover {
    color: #2271b1;
    border-bottom-color: #2271b1;
}

.lnm-auth-content {
    position: relative;
}

.lnm-tab-panel {
    display: none;
}

.lnm-tab-panel.active {
    display: block;
}

.lnm-tab-panel h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

/* Form Fields - Scoped to lnm-reporter-auth */
.lnm-reporter-auth form {
    margin: 0;
}

.lnm-reporter-auth form p {
    margin-bottom: 22px;
}

.lnm-reporter-auth form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.lnm-reporter-auth form .lnm-required {
    color: #d63638;
    margin-left: 3px;
}

.lnm-reporter-auth form input[type="text"],
.lnm-reporter-auth form input[type="email"],
.lnm-reporter-auth form input[type="password"],
.lnm-reporter-auth form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s;
    background: #fff;
    color: #333;
    font-family: inherit;
}

.lnm-reporter-auth form input[type="text"]:focus,
.lnm-reporter-auth form input[type="email"]:focus,
.lnm-reporter-auth form input[type="password"]:focus,
.lnm-reporter-auth form textarea:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.lnm-reporter-auth form input[type="text"]:hover,
.lnm-reporter-auth form input[type="email"]:hover,
.lnm-reporter-auth form input[type="password"]:hover,
.lnm-reporter-auth form textarea:hover {
    border-color: #c0c0c0;
}

.lnm-reporter-auth form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.lnm-reporter-auth form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

.lnm-reporter-auth form label[for*="remember"] {
    display: flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
}

.lnm-reporter-auth .lnm-submit-btn {
    width: 100%;
    /* Background and color are set dynamically via inline CSS */
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.lnm-reporter-auth .lnm-submit-btn:hover {
    /* Background and color are set dynamically via inline CSS */
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(34, 113, 177, 0.3);
}

.lnm-reporter-auth .lnm-submit-btn:active {
    transform: translateY(0);
}

.lnm-reporter-auth .lnm-message {
    padding: 14px 16px;
    margin-top: 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

/* Legacy Signup Form (if used separately) */
.lnm-reporter-signup {
    max-width: 600px;
    margin: 20px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lnm-reporter-signup h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.lnm-reporter-signup form p {
    margin-bottom: 22px;
}

.lnm-reporter-signup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.lnm-reporter-signup .lnm-required {
    color: #d63638;
    margin-left: 3px;
}

.lnm-reporter-signup input[type="text"],
.lnm-reporter-signup input[type="email"],
.lnm-reporter-signup input[type="password"],
.lnm-reporter-signup textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s;
    background: #fff;
    color: #333;
    font-family: inherit;
}

.lnm-reporter-signup input[type="text"]:focus,
.lnm-reporter-signup input[type="email"]:focus,
.lnm-reporter-signup input[type="password"]:focus,
.lnm-reporter-signup textarea:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.lnm-reporter-signup input[type="text"]:hover,
.lnm-reporter-signup input[type="email"]:hover,
.lnm-reporter-signup input[type="password"]:hover,
.lnm-reporter-signup textarea:hover {
    border-color: #c0c0c0;
}

.lnm-reporter-signup textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.lnm-submit-btn {
    /* Background and color are set dynamically via inline CSS */
    padding: 14px 24px !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-family: inherit !important;
}

.lnm-submit-btn:hover {
    /* Background and color are set dynamically via inline CSS */
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(34, 113, 177, 0.3) !important;
}

.lnm-submit-btn:active {
    transform: translateY(0);
}

.lnm-message {
    padding: 12px;
    margin-top: 15px;
    border-radius: 4px;
}

.lnm-message.lnm-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.lnm-message.lnm-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.lnm-reporter-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    background: #f0f0f1;
    color: #2c3338;
}

.lnm-reporter-message.lnm-pending {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.lnm-reporter-message.lnm-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Dashboard Wrapper */
.lnm-reporter-dashboard-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Dashboard Sidebar */
.lnm-dashboard-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0;
    height: fit-content;
    position: sticky;
    top: 30px;
}

.lnm-dashboard-user-info {
    padding: 30px 25px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    border-radius: 12px 12px 0 0;
    color: #fff;
    text-align: center;
}

.lnm-dashboard-user-info .lnm-profile-picture {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lnm-dashboard-user-info .lnm-profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lnm-dashboard-user-info .lnm-profile-picture.lnm-no-picture {
    background: rgba(255, 255, 255, 0.15);
}

.lnm-dashboard-user-info .lnm-profile-picture.lnm-no-picture .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.7);
}

.lnm-dashboard-user-info h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.lnm-dashboard-user-info .lnm-user-email {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}

.lnm-dashboard-user-info .lnm-status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.lnm-dashboard-nav {
    padding: 15px 0;
}

.lnm-dashboard-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lnm-dashboard-nav li {
    margin: 0;
    padding: 0;
}

.lnm-dashboard-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    position: relative;
}

.lnm-dashboard-nav li a:hover {
    background: #f8f9fa;
    color: #2271b1;
    border-left-color: #2271b1;
}

.lnm-dashboard-nav li.active a {
    background: transparent;
    color: #2271b1;
    border-left-color: #2271b1;
    font-weight: 600;
}

.lnm-dashboard-nav li a .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 1;
}

.lnm-dashboard-nav li a .lnm-count {
    margin-left: auto;
    background: #2271b1;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.lnm-dashboard-nav li:last-child a {
    color: #d63638;
    border-top: 1px solid #e0e0e0;
    margin-top: 5px;
}

.lnm-dashboard-nav li:last-child a:hover {
    background: #fff5f5;
    color: #b32d2e;
    border-left-color: #d63638;
}

/* Dashboard Content */
.lnm-dashboard-content {
    flex: 1;
    min-width: 0;
}

.lnm-reporter-dashboard {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.lnm-reporter-dashboard h2 {
    margin-top: 0;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
    font-weight: 700;
}

.lnm-dashboard-section {
    background: #fff;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0e0e0;
}

.lnm-dashboard-section h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #1d2327;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f1;
}

.lnm-dashboard-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #f0f0f1;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.lnm-post-form p {
    margin-bottom: 22px;
}

.lnm-post-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.lnm-post-form .lnm-required {
    color: #d63638;
    margin-left: 3px;
}

.lnm-post-form input[type="text"],
.lnm-post-form input[type="email"],
.lnm-post-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s;
    background: #fff;
    color: #333;
    font-family: inherit;
}

.lnm-post-form input[type="text"]:focus,
.lnm-post-form input[type="email"]:focus,
.lnm-post-form textarea:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.lnm-post-form input[type="text"]:hover,
.lnm-post-form input[type="email"]:hover,
.lnm-post-form textarea:hover {
    border-color: #c0c0c0;
}

.lnm-post-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.lnm-post-form .wp-editor-container,
.lnm-post-form .wp-editor-wrap {
    border: 2px solid #e0e0e0 !important;
    border-radius: 6px !important;
    transition: all 0.3s !important;
}

.lnm-post-form .wp-editor-container:focus-within,
.lnm-post-form .wp-editor-wrap:focus-within {
    border-color: #2271b1 !important;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1) !important;
}

.lnm-post-form .wp-editor-area {
    border: none !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-family: inherit !important;
}

.lnm-post-form .wp-editor-tools {
    padding: 8px 12px !important;
    background: #f9f9f9 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

/* Additional form input classes for better scoping - Use !important to override theme styles */
.lnm-reporter-auth .lnm-form-input,
.lnm-reporter-auth .lnm-form-textarea,
.lnm-dashboard-content .lnm-form-input,
.lnm-dashboard-content .lnm-form-textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
    transition: all 0.3s !important;
    background: #fff !important;
    color: #333 !important;
    font-family: inherit !important;
    margin: 0 !important;
}

.lnm-reporter-auth .lnm-form-input:focus,
.lnm-reporter-auth .lnm-form-textarea:focus,
.lnm-dashboard-content .lnm-form-input:focus,
.lnm-dashboard-content .lnm-form-textarea:focus {
    outline: none !important;
    border-color: #2271b1 !important;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1) !important;
}

.lnm-reporter-auth .lnm-form-input:hover,
.lnm-reporter-auth .lnm-form-textarea:hover,
.lnm-dashboard-content .lnm-form-input:hover,
.lnm-dashboard-content .lnm-form-textarea:hover {
    border-color: #c0c0c0 !important;
}

.lnm-reporter-auth .lnm-form-textarea,
.lnm-dashboard-content .lnm-form-textarea {
    resize: vertical !important;
    min-height: 120px !important;
    line-height: 1.6 !important;
}

#featured_image_preview img,
.featured-image-preview img {
    max-width: 200px;
    height: auto;
    border-radius: 4px;
    margin-top: 10px;
}

/* Posts List */
.lnm-posts-list {
    display: grid;
    gap: 20px;
}

.lnm-post-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.lnm-post-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #c0c0c0;
    transform: translateY(-2px);
}

.lnm-post-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.lnm-post-header h4 {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.lnm-post-header h4 a {
    color: #1d2327;
    text-decoration: none;
    transition: color 0.3s;
}

.lnm-post-header h4 a:hover {
    color: #2271b1;
    text-decoration: none;
}

.lnm-status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.lnm-status-badge.lnm-status-pending_review {
    background: #fff3cd;
    color: #856404;
}

.lnm-status-badge.lnm-status-approved {
    background: #d4edda;
    color: #155724;
}

.lnm-status-badge.lnm-status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.lnm-status-badge.lnm-status-draft {
    background: #e0e0e0;
    color: #555;
}

.lnm-featured-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    background: #2271b1;
    color: #fff;
}

.lnm-post-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.lnm-post-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lnm-post-actions button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.lnm-post-actions button:hover {
    background: #f0f0f1;
}

.lnm-post-actions .lnm-edit-post {
    /* Background and color are set dynamically via inline CSS */
    border-color: #2271b1;
}

.lnm-post-actions .lnm-edit-post:hover {
    /* Background and color are set dynamically via inline CSS */
}

.lnm-post-actions .lnm-delete-post {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.lnm-post-actions .lnm-delete-post:hover {
    background: #c82333;
}

/* Edit Form */
.lnm-edit-form {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: -25px;
}

.lnm-cancel-edit {
    background: #6c757d !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-family: inherit !important;
}

.lnm-cancel-edit:hover {
    background: #5a6268 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(108, 117, 125, 0.3) !important;
}

/* Local Voices Display */
.lnm-local-voices {
    margin: 30px 0;
}

.lnm-section-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: #333;
}

.lnm-voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.lnm-voice-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lnm-voice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lnm-voice-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f1;
}

.lnm-voice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lnm-voice-content {
    padding: 20px;
}

.lnm-voice-title {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.lnm-voice-title a {
    color: #333;
    text-decoration: none;
}

.lnm-voice-title a:hover {
    color: #2271b1;
}

.lnm-voice-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.lnm-voice-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.lnm-read-more {
    display: inline-block;
    padding: 8px 16px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.lnm-read-more:hover {
    background: #135e96;
    color: #fff;
}

.lnm-local-voices-empty {
    text-align: center;
    padding: 40px;
    color: #666;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Admin Styles */
.lnm-admin-content .lnm-status-badge {
    padding: 4px 8px;
    font-size: 11px;
}

.lnm-admin-content .lnm-featured-badge {
    padding: 4px 8px;
    font-size: 11px;
}

.lnm-not-featured {
    color: #999;
    font-size: 13px;
}

/* Profile Form */
.lnm-profile-form {
    max-width: 600px;
}

.lnm-profile-form p {
    margin-bottom: 22px;
}

.lnm-profile-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.lnm-profile-form .lnm-required {
    color: #d63638;
    margin-left: 3px;
}

.lnm-profile-form input[type="text"],
.lnm-profile-form input[type="email"],
.lnm-profile-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s;
    background: #fff;
    color: #333;
    font-family: inherit;
}

.lnm-profile-form input[type="text"]:focus,
.lnm-profile-form input[type="email"]:focus,
.lnm-profile-form textarea:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.lnm-profile-form input[type="text"]:hover,
.lnm-profile-form input[type="email"]:hover,
.lnm-profile-form textarea:hover {
    border-color: #c0c0c0;
}

.lnm-profile-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.lnm-profile-picture-upload {
    margin-top: 10px;
}

.lnm-profile-picture-preview {
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.lnm-profile-picture-preview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    display: block;
}

.lnm-profile-picture-preview .lnm-remove-profile-picture {
    margin-top: 10px;
    padding: 8px 16px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.lnm-profile-picture-preview .lnm-remove-profile-picture:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.lnm-profile-picture-upload .button {
    margin-top: 10px;
}

/* Empty State */
.lnm-dashboard-section p:first-of-type {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.lnm-dashboard-section p a.lnm-submit-btn {
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .lnm-reporter-dashboard-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .lnm-dashboard-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .lnm-dashboard-user-info {
        border-radius: 12px 12px 0 0;
    }
}

@media (max-width: 768px) {
    .lnm-reporter-auth,
    .lnm-reporter-signup,
    .lnm-reporter-dashboard {
        padding: 20px;
    }
    
    .lnm-reporter-dashboard-wrapper {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .lnm-dashboard-section {
        padding: 25px 20px;
    }
    
    .lnm-dashboard-section h2 {
        font-size: 22px;
    }
    
    .lnm-dashboard-user-info {
        padding: 25px 20px;
    }
    
    .lnm-dashboard-user-info h3 {
        font-size: 20px;
    }
    
    .lnm-dashboard-nav li a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .lnm-voices-grid {
        grid-template-columns: 1fr;
    }
    
    .lnm-post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .lnm-post-item {
        padding: 20px;
    }
    
    .lnm-post-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .lnm-post-actions button {
        width: 100%;
        flex: 1;
    }
    
    .lnm-post-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .lnm-edit-form {
        margin-left: -20px;
        margin-right: -20px;
        padding: 20px;
    }
}
