/**
 * Cooper Dashboard Frontend Styles
 */

/* Hide site header/nav/footer on dashboard pages including login */
body.cooper-dashboard-page #header-outer,
body.cooper-dashboard-page #header-space,
body.cooper-dashboard-page #top,
body.cooper-dashboard-page .nectar-bar,
body.cooper-dashboard-page .site-header,
body.cooper-dashboard-page .main-navigation,
body.cooper-dashboard-page #masthead,
body.cooper-dashboard-page header:not(.cooper-dashboard-sidebar header),
body.cooper-dashboard-page nav.navbar,
body.cooper-dashboard-page .site-branding,
body.cooper-dashboard-page #site-navigation,
body.cooper-dashboard-page #wpadminbar,
body.cooper-dashboard-page .ocm-effect-wrap,
body.cooper-dashboard-page .container-wrap > header,
body.cooper-dashboard-page #ajax-content-wrap > header,
body.cooper-dashboard-page footer,
body.cooper-dashboard-page .site-footer,
body.cooper-dashboard-page #colophon,
body.cooper-dashboard-page #footer,
body.cooper-dashboard-page .footer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

body.cooper-dashboard-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.cooper-dashboard-page #ajax-content-wrap,
body.cooper-dashboard-page .container-wrap {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

html {
    margin-top: 0 !important;
}

body.admin-bar.cooper-dashboard-page {
    margin-top: 0 !important;
}

/* Reset and Base */
.cooper-dashboard-wrapper {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #fdf4e5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.cooper-dashboard-container {
    display: flex;
    min-height: 100vh;
    gap: 2%;
    padding: 2%;
}

/* Sidebar */
.cooper-dashboard-sidebar {
    width: 260px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: fixed;
    height: calc(96vh);
    overflow-y: auto;
    z-index: 100;
    left: 2%;
    top: 2%;
}

.cooper-sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.cooper-logo {
    padding: 20px;
    border-bottom: none;
}

.cooper-logo a {
    display: block;
    text-decoration: none;
}

.cooper-logo-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cooper-logo h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #4a6b5e;
}

/* Navigation */
.cooper-dashboard-nav {
    flex: 1;
    padding: 10px 0;
}

.cooper-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cooper-nav-item {
    margin: 0;
}

.cooper-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 10px;
}

.cooper-nav-link:hover {
    background: #f8f7f4;
    color: #4a6b5e;
}

.cooper-nav-item.active .cooper-nav-link {
    background: #3d8750;
    color: #fff;
    font-weight: 600;
}

.cooper-nav-arrow {
    display: inline-block;
    margin-left: auto;
    font-size: 18px;
    font-weight: 300;
}

/* User Info */
.cooper-user-info {
    padding: 15px 20px;
    margin: 10px;
    background: #f8f7f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.cooper-user-avatar img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.cooper-user-details {
    flex: 1;
}

.cooper-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.cooper-settings-link {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.cooper-settings-link:hover {
    color: #4a6b5e;
}

/* Main Content */
.cooper-dashboard-content {
    flex: 1;
    margin-left: calc(260px + 4%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 30px;
    min-height: calc(96vh);
    overflow-y: auto;
}

.cooper-content-inner {
    width: 100%;
}

/* Full width content for all pages */
.cooper-content-inner {
    width: 100%;
    max-width: 100%;
}

/* Content Styles for WPBakery */
.cooper-content-inner .vc_row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}

.cooper-content-inner .wpb_column {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.cooper-content-inner .vc_row[data-vc-stretch-content] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ensure WPBakery content looks good */
.cooper-dashboard-content h1,
.cooper-dashboard-content h2,
.cooper-dashboard-content h3 {
    margin-top: 0;
}

.cooper-dashboard-content img {
    max-width: 100%;
    height: auto;
}

.cooper-dashboard-content .vc_row[data-vc-full-width] {
    margin-left: -40px !important;
    margin-right: -40px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    width: calc(100% + 80px) !important;
}

/* Override any container max-width */
.cooper-dashboard-content .wpb_row,
.cooper-dashboard-content .vc_row-fluid,
.cooper-dashboard-content .container {
    max-width: 100% !important;
    width: 100% !important;
}

/* Single Post */
.cooper-single-post {
    width: 100%;
}

.cooper-post-header {
    margin-bottom: 40px;
}

.cooper-post-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.2;
}

.cooper-post-meta {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.cooper-post-meta .separator {
    margin: 0 8px;
}

.cooper-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.cooper-post-category-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #e87653;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cooper-post-category-tag:hover {
    background: #d6654a;
}

.cooper-post-featured-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.cooper-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cooper-post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
}

.cooper-post-content p {
    margin-bottom: 24px;
}

.cooper-post-content h2,
.cooper-post-content h3,
.cooper-post-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.cooper-post-content h2 {
    font-size: 32px;
}

.cooper-post-content h3 {
    font-size: 26px;
}

.cooper-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

.cooper-post-content ul,
.cooper-post-content ol {
    margin: 24px 0;
    padding-left: 30px;
}

.cooper-post-content li {
    margin-bottom: 12px;
}

.cooper-post-footer {
    border-top: 2px solid #e5e4e0;
    padding-top: 40px;
    margin-top: 60px;
}

.cooper-post-tags {
    margin-bottom: 40px;
    font-size: 15px;
}

.cooper-post-tags strong {
    color: #666;
    margin-right: 8px;
}

.cooper-post-tags a {
    color: #4a6b5e;
    text-decoration: none;
}

.cooper-post-tags a:hover {
    text-decoration: underline;
}

.cooper-post-navigation {
    margin-top: 40px;
}

.cooper-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cooper-nav-previous,
.cooper-nav-next {
    padding: 24px;
    background: #f8f7f4;
    border-radius: 12px;
    transition: all 0.2s;
}

.cooper-nav-previous:hover,
.cooper-nav-next:hover {
    background: #f0f0ed;
    transform: translateY(-2px);
}

.cooper-nav-next {
    text-align: right;
}

.cooper-nav-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cooper-nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.cooper-nav-title:hover {
    color: #4a6b5e;
}

.cooper-comments-section {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid #e5e4e0;
}

/* Pagination */
.cooper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.cooper-pagination a,
.cooper-pagination span {
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e5e4e0;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.cooper-pagination a:hover {
    background: #f8f7f4;
    border-color: #ccc;
}

.cooper-pagination .current {
    background: #4a6b5e;
    color: #fff;
    border-color: #4a6b5e;
}

.cooper-filter-clear {
    background: #ffebee !important;
    color: #c62828 !important;
}

/* External Iframe Container */
.cooper-iframe-container {
    position: fixed;
    top: 0;
    left: 260px;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 10;
}

.cooper-external-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Page Header */
.cooper-page-header {
    margin-bottom: 40px;
}

.cooper-page-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.3;
}

.cooper-page-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* CTA Cards */
.cooper-cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.cooper-cta-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cooper-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cooper-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.4;
    min-height: 80px;
}

.cooper-card-footer {
    margin-top: auto;
}

/* Buttons */
.cooper-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cooper-btn-primary {
    background: #e87653;
    color: #fff;
}

.cooper-btn-primary:hover {
    background: #d6654a;
    transform: translateY(-1px);
}

.cooper-btn-secondary {
    background: #f8f7f4;
    color: #333;
    border: 1px solid #e5e4e0;
}

.cooper-btn-secondary:hover {
    background: #fff;
    border-color: #ccc;
}

.cooper-btn-block {
    width: 100%;
    display: block;
}

.cooper-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
}

/* Video Section */
.cooper-video-section {
    margin-top: 60px;
}

.cooper-video-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    text-align: center;
}

.cooper-video-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 30px;
    text-align: center;
}

.cooper-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 16px;
}

.cooper-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Resource Categories */
.cooper-resource-categories {
    display: grid;
    gap: 20px;
}

.cooper-resource-category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.cooper-resource-category-card:hover {
    border-color: #4a6b5e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cooper-category-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
}

.cooper-category-icon {
    width: 60px;
    height: 60px;
    background: #f0f4f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cooper-category-icon .dashicons {
    font-size: 32px;
    color: #4a6b5e;
}

.cooper-category-content {
    flex: 1;
}

.cooper-category-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px;
}

.cooper-category-count {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cooper-category-arrow {
    color: #999;
}

.cooper-category-arrow .dashicons {
    font-size: 24px;
}

/* PDF List */
.cooper-pdf-list {
    display: grid;
    gap: 16px;
}

.cooper-pdf-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e4e0;
    transition: all 0.2s ease;
}

.cooper-pdf-item:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cooper-pdf-icon .dashicons {
    font-size: 32px;
    color: #e87653;
}

.cooper-pdf-content {
    flex: 1;
}

.cooper-pdf-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Breadcrumb */
.cooper-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.cooper-breadcrumb a {
    color: #4a6b5e;
    text-decoration: none;
}

.cooper-breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

.cooper-breadcrumb .current {
    color: #333;
    font-weight: 600;
}

/* Back Link */
.cooper-back-link {
    margin-top: 40px;
}

.cooper-link-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4a6b5e;
    text-decoration: none;
    font-weight: 500;
}

.cooper-link-back:hover {
    text-decoration: underline;
}

/* Empty State */
.cooper-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.cooper-empty-state p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Placeholder Content */
.cooper-placeholder-content {
    margin-top: 30px;
}

.cooper-placeholder-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cooper-placeholder-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
}

.cooper-placeholder-list {
    margin: 30px 0;
}

.cooper-placeholder-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
}

.cooper-placeholder-item .dashicons {
    color: #4a6b5e;
    font-size: 24px;
}

.cooper-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

/* Filter Tags */
.cooper-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.cooper-filter-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f4f2;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #4a6b5e;
}

/* Login Page Styles - Split Screen Design */
html.page-template-page-login,
body.page-template-page-login,
body.page-id-login,
body.page.login {
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    height: 100%;
    overflow-x: hidden;
}

body.page-template-page-login #ajax-content-wrap,
body.page-template-page-login .container-wrap,
body.page-template-page-login .main-content,
body.page-template-page-login #content,
body.page-template-page-login .site-content,
body.page-template-page-login main,
body.page-template-page-login article {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Aggressively hide all site navigation on login page */
body.page-template-page-login #header-outer,
body.page-template-page-login #header-space,
body.page-template-page-login #top,
body.page-template-page-login .nectar-bar,
body.page-template-page-login .site-header,
body.page-template-page-login .main-navigation,
body.page-template-page-login #masthead,
body.page-template-page-login header.site-header,
body.page-template-page-login nav.navbar,
body.page-template-page-login .site-branding,
body.page-template-page-login #site-navigation,
body.page-template-page-login .top-nav,
body.page-template-page-login .primary-navigation,
body.page-template-page-login #header,
body.page-template-page-login .header-wrapper,
body.page-template-page-login .navbar-header,
body.page-template-page-login .page-header-wrapper {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

.cooper-login-wrapper {
    min-height: 100vh;
    display: flex;
    background: #fff;
    margin: 0;
    padding: 0;
}

.cooper-login-split-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-direction: row; /* Normal order: green panel left, form right */
}

/* Left Panel - Green Background (now on the right) */
.cooper-login-left-panel {
    flex: 1;
    background-color: #3d8750;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.cooper-login-left-content {
    max-width: 500px;
}

.cooper-login-logo {
    margin-bottom: 60px;
}

.cooper-login-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
}

.cooper-login-logo h1 {
    font-size: 48px;
    font-weight: 700;
    color: #f8ca41;
    margin: 0;
    letter-spacing: -1px;
}

.cooper-login-welcome-title {
    font-size: 52px;
    font-weight: 700;
    color: #f8ca41;
    line-height: 1.2;
    margin: 0;
}

/* Right Panel - Form (now on the left) */
.cooper-login-right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #fff;
}

.cooper-login-form-wrapper {
    width: 100%;
    max-width: 440px;
}

.cooper-login-error {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    color: #c33;
    font-size: 14px;
    margin-bottom: 20px;
}

.cooper-login-error .dashicons {
    font-size: 20px;
}

/* Google Button */
.cooper-btn-google-new {
    width: 100%;
    padding: 14px 24px;
    background: #fff;
    color: #444;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    opacity: 0.6;
}

.cooper-btn-google-new:hover {
    background: #f9f9f9;
    border-color: #ccc;
}

.cooper-google-icon {
    font-weight: 700;
    color: #4285f4;
    font-size: 18px;
}

/* Divider */
.cooper-login-divider {
    text-align: center;
    margin: 24px 0;
}

.cooper-login-divider span {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
    display: block;
}

/* Form Styles */
.cooper-form-group {
    margin-bottom: 20px;
}

.cooper-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.cooper-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    background: #f9f9f9;
}

.cooper-form-input:focus {
    outline: none;
    border-color: #3d8750;
    background: #fff;
}

.cooper-form-input::placeholder {
    color: #999;
}

.cooper-form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cooper-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.cooper-forgot-link {
    font-size: 14px;
    color: #e87653;
    text-decoration: none;
}

.cooper-forgot-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.cooper-btn-submit {
    background: #e87653;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cooper-btn-submit:hover {
    background: #d6654a;
    transform: translateY(-1px);
}

.cooper-arrow {
    font-size: 24px;
    font-weight: 300;
}

/* Terms Text */
.cooper-login-terms {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 24px;
    line-height: 1.5;
}

.cooper-social-login-note {
    font-size: 12px;
    color: #ccc;
    text-align: center;
    margin-top: 20px;
}

/* Settings Page */
.cooper-settings-container {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.cooper-settings-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cooper-settings-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 24px;
}

.cooper-settings-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px;
}

.cooper-settings-form .cooper-form-group {
    margin-bottom: 24px;
}

.cooper-field-description {
    font-size: 13px;
    color: #666;
    margin: 6px 0 0;
}

.cooper-section-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
}

.cooper-divider {
    border: none;
    border-top: 1px solid #e5e4e0;
    margin: 30px 0;
}

.cooper-form-actions {
    margin-top: 30px;
}

.cooper-membership-info {
    margin-bottom: 20px;
}

.cooper-membership-status {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.cooper-membership-status.active {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
}

.cooper-membership-status.inactive {
    background: #fff3e0;
    border: 1px solid #ffe0b2;
}

.cooper-membership-status .dashicons {
    font-size: 24px;
    margin-top: 2px;
}

.cooper-membership-status.active .dashicons {
    color: #4caf50;
}

.cooper-membership-status.inactive .dashicons {
    color: #ff9800;
}

.cooper-membership-status strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.cooper-membership-status p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cooper-account-actions {
    margin-top: 20px;
}

/* Messages */
.cooper-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 15px;
}

.cooper-message .dashicons {
    font-size: 20px;
}

.cooper-message-success {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #2e7d32;
}

.cooper-message-success .dashicons {
    color: #4caf50;
}

.cooper-message-error {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

.cooper-message-error .dashicons {
    color: #f44336;
}

/* Shortcode Login Form */
.cooper-shortcode-login-form {
    max-width: 460px;
    margin: 40px auto;
}

.cooper-logged-in-message {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cooper-logged-in-message p {
    font-size: 15px;
    margin: 0 0 20px;
}

.cooper-logged-in-message .cooper-btn {
    margin: 0 8px;
}

/* Assemblies Shortcode */
.cooper-assemblies-shortcode {
    margin-top: 20px;
}

.cooper-assemblies-hero {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f0f4f2 0%, #e8f2ed 100%);
    border-radius: 16px;
    margin-bottom: 40px;
}

.cooper-assemblies-hero-image {
    flex-shrink: 0;
}

.cooper-assemblies-icon-large {
    width: 120px;
    height: 120px;
    background: #4a6b5e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cooper-assemblies-icon-large .dashicons {
    font-size: 64px;
    color: #fff;
}

.cooper-assemblies-hero-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
}

.cooper-assemblies-hero-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cooper-assemblies-filters {
    margin-bottom: 40px;
}

.cooper-assemblies-filters h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px;
}

.cooper-filter-tag {
    cursor: pointer;
    border: none;
    background: #f0f4f2;
    transition: all 0.2s;
}

.cooper-filter-tag:hover,
.cooper-filter-tag.active {
    background: #4a6b5e;
    color: #fff;
}

.cooper-assemblies-section {
    margin-bottom: 40px;
}

.cooper-assemblies-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 24px;
}

.cooper-workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.cooper-workshop-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cooper-workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cooper-workshop-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background: #f5f5f5;
    overflow: hidden;
}

.cooper-workshop-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cooper-workshop-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f2 0%, #e8f2ed 100%);
}

.cooper-workshop-placeholder .dashicons {
    font-size: 64px;
    color: #4a6b5e;
}

.cooper-workshop-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.cooper-workshop-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.cooper-workshop-play .dashicons {
    font-size: 32px;
    color: #4a6b5e;
}

.cooper-workshop-content {
    padding: 20px;
}

.cooper-workshop-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px;
}

.cooper-workshop-content p {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px;
    line-height: 1.5;
}

/* Scoop/Blog Shortcode */
.cooper-scoop-shortcode {
    margin-top: 20px;
}

.cooper-featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}

.cooper-featured-image {
    border-radius: 12px;
    overflow: hidden;
}

.cooper-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cooper-placeholder-image {
    width: 100%;
    padding-bottom: 75%;
    background: linear-gradient(135deg, #f0f4f2 0%, #e8f2ed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.cooper-placeholder-image .dashicons {
    font-size: 64px;
    color: #4a6b5e;
}

.cooper-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cooper-article-meta {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    display: block;
}

.cooper-featured-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
    line-height: 1.3;
}

.cooper-featured-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px;
}

.cooper-scoop-filters-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.cooper-filters-column h3,
.cooper-search-column h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px;
}

.cooper-search-form {
    display: flex;
    gap: 8px;
}

.cooper-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.cooper-search-button {
    width: 48px;
    height: 48px;
    background: #4a6b5e;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.cooper-search-button:hover {
    background: #3d5a4e;
}

.cooper-search-button .dashicons {
    font-size: 20px;
    color: #fff;
}

.cooper-blog-section {
    margin-top: 40px;
}

.cooper-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.cooper-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cooper-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.cooper-blog-thumbnail {
    overflow: hidden;
}

.cooper-blog-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.cooper-blog-card:hover .cooper-blog-thumbnail img {
    transform: scale(1.05);
}

.cooper-blog-content {
    padding: 24px;
}

.cooper-blog-meta {
    font-size: 12px;
    font-weight: 600;
    color: #4a6b5e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.cooper-blog-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
}

.cooper-blog-title a {
    color: #333;
    text-decoration: none;
}

.cooper-blog-title a:hover {
    color: #4a6b5e;
}

.cooper-blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px;
}

.cooper-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4a6b5e;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.cooper-link-inline:hover {
    text-decoration: underline;
}

.cooper-link-inline .dashicons {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 968px) {
    .cooper-dashboard-sidebar {
        transform: translateX(-100%);
    }
    
    .cooper-dashboard-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .cooper-dashboard-sidebar {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
    }
    
    .cooper-dashboard-content {
        margin-left: 0;
        padding: 30px 20px;
        min-height: auto;
    }
    
    .cooper-post-title {
        font-size: 32px;
    }
    
    .cooper-nav-links {
        grid-template-columns: 1fr;
    }
    
    .cooper-nav-next {
        text-align: left;
    }
    
    .cooper-iframe-container {
        left: 0;
    }
    
    .cooper-cta-cards {
        grid-template-columns: 1fr;
    }
    
    .cooper-login-split-container {
        flex-direction: column; /* On mobile: green panel first, then form */
    }
    
    .cooper-login-left-panel {
        padding: 40px 30px;
        min-height: 40vh;
    }
    
    .cooper-login-welcome-title {
        font-size: 32px;
    }
    
    .cooper-login-right-panel {
        padding: 40px 30px;
    }
    
    .cooper-settings-card {
        padding: 30px 24px;
    }
    
    .cooper-membership-status {
        flex-direction: column;
        text-align: center;
    }
    
    .cooper-assemblies-hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }
    
    .cooper-featured-article {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }
    
    .cooper-scoop-filters-section {
        grid-template-columns: 1fr;
    }
    
    .cooper-workshops-grid,
    .cooper-blog-grid {
        grid-template-columns: 1fr;
    }
}

