/* Dr Organics Academy - Custom Membership Styles */
/*
    Rule: ALL custom classes must be prefixed with  dro-
    e.g.  .dro-login-card  .dro-video-card  .dro-member-badge

    Gadden colour palette (compiled from SCSS — no CSS variables available):
      Primary green   #0B3D2C
      Secondary green #2A7D2E
      Accent golden   #F1D2A9
      Off-white bg    #FCFAF7
      Body text       #2F2F2F
*/


/* ================================================
   GLOBAL UTILITIES
   ================================================ */

/* Font Awesome icons — prevent inherited text fonts on <i> tags */
.doa-app i.fas,
.doa-app i.far,
.doa-app i.fab,
.doa-app i.fal,
.doa-app i.fa,
.doa-app .fas,
.doa-app .far,
.doa-app .fab {
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}

.doa-app i.fas,
.doa-app i.fa,
.doa-app .fas,
.doa-app i.fas::before,
.doa-app i.fa::before,
.doa-app .fas::before,
.dro-sidebar-nav a i.fas::before,
.dro-stat-icon-inner.fas::before,
.dro-stat-icon-inner::before {
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900 !important;
}

.doa-app i.far,
.doa-app .far,
.doa-app i.far::before,
.doa-app .far::before {
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 400 !important;
}

.doa-app i.fab,
.doa-app .fab,
.doa-app i.fab::before,
.doa-app .fab::before {
	font-family: "Font Awesome 5 Brands" !important;
	font-weight: 400 !important;
}

.dro-sidebar-nav a i.fas,
.dro-sidebar-nav a i.far,
.dro-sidebar-nav a i.fab,
.dro-stat-icon-inner {
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900 !important;
}

/* Makes Gadden's inline-flex  main-btn  full-width */
.dro-btn-full {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


/* ================================================
   LOGIN PAGE  —  login.html
   ================================================ */

/* Outer page wrapper — fills viewport, centres card */
.dro-login-wrap {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Card shell */
.dro-login-card {
    border-radius: 16px;
    padding: 50px 45px 45px;
    -webkit-box-shadow: 0 15px 60px rgba(11, 61, 44, 0.1);
            box-shadow: 0 15px 60px rgba(11, 61, 44, 0.1);
}

@media (max-width: 575px) {
    .dro-login-card {
        padding: 35px 22px 30px;
        border-radius: 12px;
    }
}

/* Logo — hidden on auth pages (login, register, forgot/reset password) */
body.doa-page-login .dro-login-logo,
body.doa-page-register .dro-login-logo,
body.doa-page-forgot_password .dro-login-logo,
body.doa-page-reset_password .dro-login-logo {
    display: none !important;
    margin: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.dro-login-logo {
    margin-bottom: 24px;
}

.dro-login-logo img {
    max-width: 180px;
    height: auto;
}

/* Page heading + subtext */
.dro-login-heading {
    margin-bottom: 28px;
}

.dro-login-heading h4 {
    margin-bottom: 8px;
}

.dro-login-heading p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Error alert — hidden by default, shown via membership.js */
.dro-login-error {
    display: none;
    margin-bottom: 20px;
    padding: 13px 18px;
    border-radius: 8px;
    background-color: #fff3f3;
    border: 1px solid #f5c2c2;
    color: #c0392b;
    font-size: 14px;
    line-height: 1.5;
}

.dro-login-error i {
    margin-right: 8px;
}

/* Spacing between each input row */
.dro-field-wrap {
    margin-bottom: 18px;
}

/* Icon pinned inside the input
   (form_group already has position:relative in Gadden) */
.dro-field-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #0B3D2C;
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

/* Input — adds border & padding-left to Gadden's borderless form_control */
.dro-form-input {
    padding: 14px 16px 14px 46px;
    border: 1px solid rgba(11, 61, 44, 0.2);
    border-radius: 8px;
    background-color: #FCFAF7;
    color: #2F2F2F;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
            transition: border-color 0.3s ease, background-color 0.3s ease;
}

.dro-form-input:focus {
    border-color: #0B3D2C;
    background-color: #fff;
    outline: none;
}

.dro-form-input::-webkit-input-placeholder { color: #aaa; }
.dro-form-input::-moz-placeholder          { color: #aaa; }
.dro-form-input:-ms-input-placeholder      { color: #aaa; }
.dro-form-input::placeholder               { color: #aaa; }

/* Password show/hide toggle */
.dro-password-field {
    position: relative;
}

.dro-password-field .dro-form-input {
    padding-right: 46px;
}

.dro-password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #0B3D2C;
    cursor: pointer;
    z-index: 2;
    padding: 4px;
    line-height: 1;
    font-size: 15px;
}

.dro-password-toggle:hover,
.dro-password-toggle:focus {
    color: #2A7D2E;
    outline: none;
}

/* Forgot password row */
.dro-forgot-row {
    text-align: right;
    margin-top: -6px;
    margin-bottom: 24px;
}

.dro-forgot-link {
    font-size: 14px;
    font-weight: 600;
    color: #2A7D2E;
    text-decoration: none;
}

.dro-forgot-link:hover {
    color: #0B3D2C;
    text-decoration: underline;
}

/* Divider with centred label */
.dro-divider {
    position: relative;
    text-align: center;
    margin: 28px 0;
}

.dro-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(11, 61, 44, 0.12);
}

.dro-divider span {
    position: relative;
    background-color: #fff;
    padding: 0 16px;
    font-size: 13px;
    color: #888;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}


/* ================================================
   REGISTER PAGE  —  register.html
   ================================================ */

/* Benefits strip — 3 icons above the form */
.dro-benefits-strip {
    margin-bottom: 28px;
    padding: 18px 0;
    border-top: 1px solid rgba(11, 61, 44, 0.08);
    border-bottom: 1px solid rgba(11, 61, 44, 0.08);
}

.dro-benefit-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
}

.dro-benefit-item i {
    font-size: 22px;
    color: #2A7D2E;
}

.dro-benefit-item span {
    font-size: 12px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #0B3D2C;
    line-height: 1.3;
}

/* Register error alert — same style as login error */
.dro-register-error {
    display: none;
    margin-bottom: 20px;
    padding: 13px 18px;
    border-radius: 8px;
    background-color: #fff3f3;
    border: 1px solid #f5c2c2;
    color: #c0392b;
    font-size: 14px;
    line-height: 1.5;
}

.dro-register-error i {
    margin-right: 8px;
}

/* Register success alert */
.dro-register-success {
    display: none;
    margin-bottom: 20px;
    padding: 13px 18px;
    border-radius: 8px;
    background-color: #f0faf2;
    border: 1px solid #a8d5b0;
    color: #1a6b2a;
    font-size: 14px;
    line-height: 1.5;
}

.dro-register-success i {
    margin-right: 8px;
}

/* Terms & conditions checkbox row */
.dro-terms-row {
    margin-bottom: 24px;
    /* Bootstrap 4 .form-check needs its default padding-left: 1.25rem
       to keep the checkbox input inside the container — do NOT override it */
}

.dro-terms-check {
    accent-color: #0B3D2C;
    cursor: pointer;
}

.dro-terms-label {
    font-size: 14px;
    color: #555;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    cursor: pointer;
}

.dro-terms-label a {
    color: #2A7D2E;
    font-weight: 600;
}

.dro-terms-label a:hover {
    color: #0B3D2C;
    text-decoration: underline;
}


/* ================================================
   LEGAL PAGES  —  terms.html  /  privacy.html
   ================================================ */

/* Top back-navigation bar */
.dro-legal-back {
    padding: 16px 0;
    border-bottom: 1px solid rgba(11, 61, 44, 0.1);
}

/* Hero / page header */
.dro-legal-hero {
    padding: 60px 0 50px;
}

.dro-legal-hero h2 {
    margin-top: 12px;
    margin-bottom: 0;
}

.dro-legal-date {
    margin-top: 12px;
    font-size: 14px;
    color: #888;
}

/* Main content area */
.dro-legal-body {
    padding: 55px 0 70px;
}

/* Intro paragraph */
.dro-legal-intro {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(11, 61, 44, 0.08);
}

/* Each content section */
.dro-legal-section {
    margin-bottom: 42px;
}

.dro-legal-section h3 {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F1D2A9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
}

/* Section number badge */
.dro-section-num {
    display: inline-block;
    background-color: #0B3D2C;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.dro-legal-section p {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 12px;
}

.dro-legal-section ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.dro-legal-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.dro-legal-section ul li strong {
    color: #0B3D2C;
    font-weight: 600;
}

/* Contact info box */
.dro-contact-box {
    background-color: #FCFAF7;
    border-left: 3px solid #2A7D2E;
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin-top: 14px;
    margin-bottom: 14px;
}

.dro-contact-box p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

.dro-contact-box p:last-child {
    margin-bottom: 0;
}

.dro-contact-box i {
    color: #2A7D2E;
    width: 18px;
    margin-right: 10px;
}

.dro-contact-box a {
    color: #2A7D2E;
    font-weight: 600;
}

.dro-contact-box a:hover {
    color: #0B3D2C;
    text-decoration: underline;
}

/* Bottom cross-link row */
.dro-legal-bottom {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(11, 61, 44, 0.1);
}

.dro-legal-bottom p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}

.mt-20 {
    margin-top: 20px;
}


/* ================================================
   FORGOT PASSWORD PAGE  —  forgot-password.html
   ================================================ */

/* Screen 2 hidden by default — toggled by membership.js */
.dro-fp-screen-hidden {
    display: none;
}

/* Large lock icon above heading (Screen 1) */
.dro-fp-icon {
    font-size: 54px;
    color: #0B3D2C;
    margin-bottom: 18px;
    line-height: 1;
}

/* Green checkmark icon (Screen 2) */
.dro-fp-success-icon {
    font-size: 62px;
    color: #2A7D2E;
    margin-bottom: 18px;
    line-height: 1;
}

/* Error alert for forgot-password — same appearance as login error */
.dro-fp-error {
    display: none;
    margin-bottom: 20px;
    padding: 13px 18px;
    border-radius: 8px;
    background-color: #fff3f3;
    border: 1px solid #f5c2c2;
    color: #c0392b;
    font-size: 14px;
    line-height: 1.5;
}

.dro-fp-error i {
    margin-right: 8px;
}

/* Email address display box (Screen 2) */
.dro-fp-email-display {
    background-color: #FCFAF7;
    border: 1px solid rgba(11, 61, 44, 0.2);
    border-radius: 8px;
    padding: 13px 18px;
    font-size: 15px;
    font-weight: 700;
    color: #0B3D2C;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
    word-break: break-all;
}

/* "Didn't receive it?" note */
.dro-fp-resend-note {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Back to Login link row */
.dro-fp-back-row {
    margin-top: 24px;
}

.dro-fp-back-link {
    font-size: 14px;
    font-weight: 600;
    color: #2A7D2E;
}

.dro-fp-back-link:hover {
    color: #0B3D2C;
    text-decoration: underline;
}

.dro-fp-back-link i {
    margin-right: 6px;
}


/* ================================================
   RESET PASSWORD PAGE  —  reset-password.html
   ================================================ */

/* Password strength indicator */
.dro-password-strength {
    margin-top: -10px;
    margin-bottom: 18px;
    min-height: 28px;
}

/* The grey track */
.dro-strength-track {
    height: 5px;
    background-color: rgba(11, 61, 44, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

/* The coloured fill bar */
.dro-strength-bar {
    height: 100%;
    width: 0;
    border-radius: 3px;
    -webkit-transition: width 0.35s ease, background-color 0.35s ease;
            transition: width 0.35s ease, background-color 0.35s ease;
}

.dro-strength-bar.dro-weak   { width: 33%;  background-color: #e74c3c; }
.dro-strength-bar.dro-fair   { width: 66%;  background-color: #f39c12; }
.dro-strength-bar.dro-strong { width: 100%; background-color: #2A7D2E; }

/* Strength label text */
.dro-strength-label {
    font-size: 12px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
}

.dro-strength-label.dro-weak   { color: #e74c3c; }
.dro-strength-label.dro-fair   { color: #f39c12; }
.dro-strength-label.dro-strong { color: #2A7D2E; }

/* Reset success alert */
.dro-reset-success {
    display: none;
    margin-bottom: 20px;
    padding: 13px 18px;
    border-radius: 8px;
    background-color: #f0faf2;
    border: 1px solid #a8d5b0;
    color: #1a6b2a;
    font-size: 14px;
    line-height: 1.5;
}

.dro-reset-success i {
    margin-right: 8px;
}


/* ================================================
   SUBSCRIPTION PAGE  —  subscription.html
   Two-column layout: pricing left, FAQ right
   ================================================ */

/* ---- Outer section ---- */

.dro-sub-layout-section {
    padding: 80px 0 90px;
}

/* Left column — sticky on desktop so card stays visible while scrolling FAQ */
.dro-sub-left {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    margin-bottom: 40px;
}

/* Right column — extra breathing room from card on desktop */
.dro-sub-right {
    padding-left: 20px;
}

@media (max-width: 991px) {
    /* Disable sticky on tablet/mobile — columns stack */
    .dro-sub-left {
        position: static;
        margin-bottom: 40px;
    }
    .dro-sub-right {
        padding-left: 15px; /* Bootstrap default */
    }
}

/* ---- Pricing Card ---- */

/*
 * White card on gray-bg — green top accent as anchor,
 * soft shadow for lift. Max-width removed: Bootstrap col controls width.
 */
.dro-pricing-card {
    background: #ffffff;
    border-top: 3px solid #2A7D2E;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0 0 16px 16px;
    -webkit-box-shadow: 0 6px 36px rgba(11, 61, 44, 0.10);
            box-shadow: 0 6px 36px rgba(11, 61, 44, 0.10);
    padding: 36px 36px 32px;
}

@media (max-width: 575px) {
    .dro-pricing-card {
        padding: 28px 22px 24px;
    }
}

.mb-20 {
    margin-bottom: 20px;
}

/* "MOST POPULAR" pill — use lighter green, not too heavy */
.dro-pricing-badge {
    display: inline-block;
    background-color: #2A7D2E;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    padding: 5px 18px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Plan name — subdued so it doesn't compete with the price */
.dro-plan-name {
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #999;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 14px;
}

/* Price block */
.dro-price-display {
    line-height: 1;
    margin-bottom: 4px;
}

.dro-price-amount {
    font-size: 72px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    line-height: 1;
}

.dro-price-period {
    font-size: 16px;
    color: #bbb;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    display: inline-block;
    vertical-align: bottom;
    padding-bottom: 12px;
    margin-left: 2px;
}

.dro-billing-note {
    font-size: 12px;
    color: #bbb;
    font-family: "Roboto", sans-serif;
    margin-top: 8px;
    margin-bottom: 22px;
}

/* Divider between price and features */
.dro-pricing-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

/* Feature list */
.dro-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.dro-feature-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    padding: 9px 0;
    font-size: 14px;
    color: #444;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    border-bottom: 1px solid #f5f5f5;
}

.dro-feature-item:last-child {
    border-bottom: none;
}

.dro-feature-item i {
    color: #2A7D2E;
    font-size: 12px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* Subscribe button */
.dro-sub-btn {
    margin-bottom: 16px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Secure payment note */
.dro-secure-note {
    font-size: 12px;
    color: #bbb;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
}

.dro-secure-note i {
    color: #2A7D2E;
}

/* Already a member row */
.dro-member-login {
    font-size: 13px;
    color: #999;
    font-family: "Roboto", sans-serif;
    margin-bottom: 0;
}

.dro-member-login a {
    color: #2A7D2E;
    font-weight: 600;
}

.dro-member-login a:hover {
    color: #0B3D2C;
    text-decoration: underline;
}


/* ---- FAQ Column Header (right column) ---- */

.dro-faq-col-header {
    margin-bottom: 32px;
}

.dro-faq-col-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #2A7D2E;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dro-faq-col-heading {
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 10px;
    line-height: 1.3;
}

.dro-faq-col-sub {
    font-size: 15px;
    color: #888;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---- FAQ Items ---- */

/* Each question row */
.dro-faq-item {
    border-bottom: 1px solid #ebebeb;
    padding: 20px 0;
    cursor: pointer;
}

.dro-faq-item:first-child {
    border-top: 1px solid #ebebeb;
}

/* Question row — text left, arrow circle right */
.dro-faq-question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #2F2F2F;
    gap: 20px;
    -webkit-transition: color 0.2s ease;
            transition: color 0.2s ease;
}

.dro-faq-item:hover .dro-faq-question {
    color: #0B3D2C;
}

.dro-faq-item.active .dro-faq-question {
    color: #0B3D2C;
}

/* Arrow — circle button that rotates on active */
.dro-faq-arrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f4f4f4;
    color: #aaa;
    font-size: 11px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: -webkit-transform 0.25s ease,
                        background-color 0.2s ease,
                        color 0.2s ease;
            transition: transform 0.25s ease,
                        background-color 0.2s ease,
                        color 0.2s ease;
}

.dro-faq-item:hover .dro-faq-arrow {
    background-color: rgba(11, 61, 44, 0.08);
    color: #0B3D2C;
}

.dro-faq-item.active .dro-faq-arrow {
    background-color: #0B3D2C;
    color: #fff;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

/* Answer text — jQuery handles show/hide; CSS only sets initial state */
.dro-faq-answer {
    display: none;
    padding-top: 14px;
    padding-right: 50px;
    font-size: 14px;
    color: #777;
    font-family: "Roboto", sans-serif;
    line-height: 1.8;
}

@media (max-width: 575px) {
    .dro-faq-answer {
        padding-right: 0;
    }
}

.dro-faq-answer p {
    margin-bottom: 0;
}


/* ================================================
   DASHBOARD PAGE  —  dashboard.html
   Clean light layout — reference-style admin panel
   ================================================ */

/* ---- Body & outer wrap ---- */

body.dro-dashboard-body {
    background-color: #F5F6FA;
    overflow-x: hidden;
}

.dro-dashboard-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
}

/* Right column: topbar + main content stacked */
.dro-dashboard-content-col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}


/* ---- Sidebar (light) ---- */

.dro-dashboard-sidebar {
    width: 230px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background-color: #fff;
    border-right: 1px solid rgba(11, 61, 44, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 200;
    padding-top: 8px;
}

/* Nav links */
.dro-sidebar-nav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 12px 0;
}

.dro-sidebar-nav a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    padding: 11px 22px;
    margin: 2px 10px;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-left: none;
    -webkit-transition: background-color 0.2s ease, color 0.2s ease;
            transition: background-color 0.2s ease, color 0.2s ease;
}

.dro-sidebar-nav a i {
    font-size: 15px;
    width: 18px;
    text-align: center;
    color: #0B3D2C;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.dro-sidebar-nav a:hover {
    background-color: rgba(11, 61, 44, 0.04);
    color: #0B3D2C;
    text-decoration: none;
}

.dro-sidebar-nav a.active {
    background-color: rgba(42, 125, 46, 0.1);
    color: #0B3D2C;
    font-weight: 600;
}

.dro-sidebar-nav a.active i {
    color: #2A7D2E;
}

/* Notification count badge inside nav */
.dro-sidebar-count {
    margin-left: auto;
    background-color: #2A7D2E;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 5px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

/* Logout hover */
.dro-sidebar-nav a.dro-sidebar-logout {
    margin-top: 8px;
    color: #999;
}

.dro-sidebar-nav a.dro-sidebar-logout:hover {
    background-color: rgba(231, 76, 60, 0.06);
    color: #e74c3c;
}

.dro-sidebar-nav a.dro-sidebar-logout:hover i {
    color: #e74c3c;
}


/* ---- Top Header Bar ---- */

.dro-dash-topbar {
    background-color: #fff;
    border-bottom: 1px solid rgba(11, 61, 44, 0.08);
    padding: 14px 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 150;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.dro-dash-back-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(11, 61, 44, 0.15);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #0B3D2C;
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.dro-dash-back-link:hover {
    background-color: rgba(42, 125, 46, 0.08);
    color: #2A7D2E;
    text-decoration: none;
    border-color: rgba(42, 125, 46, 0.25);
}

.dro-dash-back-link i {
    font-size: 13px;
}

@media (max-width: 575px) {
    .dro-dash-back-link span {
        display: none;
    }

    .dro-dash-back-link {
        padding: 8px 10px;
    }
}

.dro-topbar-logo img {
    max-height: 38px;
    width: auto;
}

.dro-topbar-logo {
    text-decoration: none;
}

.doa-app .dro-topbar-user-wrap {
    position: relative;
}

.doa-app .dro-topbar-user-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 170px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1200;
}

.doa-app .dro-topbar-user-wrap:hover .dro-topbar-user-menu,
.doa-app .dro-topbar-user-wrap:focus-within .dro-topbar-user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.doa-app .dro-topbar-logout-btn {
    width: 100%;
    border: 0;
    background: transparent;
    color: #c0392b;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
}

.doa-app .dro-topbar-logout-btn:hover {
    background: #fdecea;
}

/* Right actions: bell + user — pushed to the right */
.dro-topbar-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
    margin-left: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

/* Notification bell + dropdown wrapper */
.dro-notify-wrap {
    position: relative;
}

.dro-topbar-notify {
    position: relative;
    background: none;
    border: none;
    padding: 4px;
    color: #0B3D2C;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.dro-topbar-notify:hover,
.dro-topbar-notify.dro-notify-open {
    color: #2A7D2E;
}

.dro-topbar-notify-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background-color: #2A7D2E;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 4px;
    pointer-events: none;
}

/* Dropdown panel below bell */
.dro-notify-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 340px;
    background: #fff;
    border-radius: 12px;
    -webkit-box-shadow: 0 8px 32px rgba(11, 61, 44, 0.15);
            box-shadow: 0 8px 32px rgba(11, 61, 44, 0.15);
    border: 1px solid rgba(11, 61, 44, 0.08);
    z-index: 300;
    overflow: hidden;
}

.dro-notify-dropdown.dro-notify-dropdown-open {
    display: block;
}

.dro-notify-dropdown-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #f0f0f0;
}

.dro-notify-dropdown-head h4 {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 0;
}

.dro-notify-dropdown-count {
    font-size: 11px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #2A7D2E;
    background-color: rgba(42, 125, 46, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.dro-notify-dropdown-body {
    max-height: 320px;
    overflow-y: auto;
    padding: 8px 10px;
}

.dro-notify-dropdown-foot {
    padding: 12px 18px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.dro-notify-dropdown-foot a {
    font-size: 13px;
    font-weight: 600;
    color: #2A7D2E;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}

.dro-notify-dropdown-foot a:hover {
    color: #0B3D2C;
    text-decoration: underline;
}

@media (max-width: 575px) {
    .dro-notify-dropdown {
        width: 300px;
        right: -60px;
    }
}

.dro-topbar-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.dro-topbar-user:hover {
    text-decoration: none;
    color: inherit;
}

.dro-topbar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #0B3D2C;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.dro-topbar-name {
    font-size: 14px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #0B3D2C;
}


/* ---- Mobile overlay & hamburger ---- */

.dro-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
}

.dro-sidebar-overlay.dro-overlay-active {
    display: block;
}

body.dro-no-scroll {
    overflow: hidden;
}

.dro-hamburger {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.dro-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #0B3D2C;
    border-radius: 2px;
}


/* ---- Responsive — sidebar slides in on mobile ---- */

@media (max-width: 991px) {
    .dro-dashboard-sidebar {
        position: fixed;
        top: 0;
        left: -260px;
        width: 260px;
        height: 100%;
        z-index: 1050;
        overflow-y: auto;
        -webkit-transition: left 0.28s ease;
                transition: left 0.28s ease;
        padding-top: 16px;
        -webkit-box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
                box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
    }

    .dro-dashboard-sidebar.dro-sidebar-open {
        left: 0;
    }

    .dro-dash-topbar {
        padding: 12px 16px;
    }
}


/* ---- Main content area ---- */

.dro-dashboard-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    padding: 32px 32px 50px;
    background-color: #F5F6FA;
    overflow-x: hidden;
}

@media (max-width: 575px) {
    .dro-dashboard-main {
        padding: 24px 14px 40px;
    }
}


/* ---- Page Header ---- */

.dro-page-header {
    margin-bottom: 28px;
}

.dro-page-title {
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 6px;
}

.dro-page-sub {
    font-size: 14px;
    color: #888;
    font-family: "Roboto", sans-serif;
    margin-bottom: 0;
}


/* ---- Stats Cards ---- */

.dro-stats-row {
    margin-bottom: 10px;
}

.dro-stat-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 24px 18px 20px;
    text-align: center;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

/* Circular icon — matches reference screenshot */
.dro-stat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(42, 125, 46, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 14px;
}

.dro-stat-icon-inner {
    font-size: 16px;
    color: #0B3D2C;
    line-height: 1;
}

.dro-stat-num {
    font-size: 28px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #0B3D2C;
    line-height: 1;
    margin-bottom: 6px;
}

.dro-stat-num-sm {
    font-size: 20px;
}

.dro-stat-lbl {
    font-size: 12px;
    color: #999;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
}

.dro-stat-trend {
    font-size: 11px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.dro-trend-up {
    color: #2A7D2E;
}

.dro-trend-neutral {
    color: #aaa;
}


/* ---- Section heading row ---- */

.dro-section-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 16px;
}

.dro-section-title {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 0;
}

.dro-section-link {
    font-size: 13px;
    font-weight: 600;
    color: #2A7D2E;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}

.dro-section-link:hover {
    color: #0B3D2C;
    text-decoration: underline;
}


/* ---- Recent Videos — horizontal row cards ---- */

.dro-recent-videos-panel {
    background: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 28px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

.dro-video-row-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding: 14px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f4f4f4;
    -webkit-transition: background-color 0.2s ease;
            transition: background-color 0.2s ease;
}

.dro-video-row-card:last-child {
    border-bottom: none;
}

.dro-video-row-card:hover {
    background-color: #FCFAF7;
    text-decoration: none;
    color: inherit;
}

/* YouTube thumbnail */
.dro-video-row-thumb {
    position: relative;
    width: 200px;
    min-width: 200px;
    height: 112px;
    border-radius: 8px;
    overflow: hidden;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background-color: #0B3D2C;
}

.dro-video-row-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.dro-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(11, 61, 44, 0.85);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    padding-left: 3px;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
            transition: opacity 0.2s ease;
}

.dro-video-row-card:hover .dro-video-play-btn {
    opacity: 1;
}

.dro-video-duration {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    padding: 2px 6px;
    border-radius: 4px;
}

.dro-video-row-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
}

.dro-video-row-title {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #0B3D2C;
    margin-bottom: 6px;
    line-height: 1.4;
}

.dro-video-row-desc {
    font-size: 13px;
    color: #888;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dro-video-row-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #bbb;
    font-family: "Roboto", sans-serif;
}

.dro-video-row-meta i {
    margin-right: 4px;
    color: #2A7D2E;
}

@media (max-width: 767px) {
    .dro-video-row-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        gap: 12px;
    }

    .dro-video-row-thumb {
        width: 100%;
        min-width: 100%;
        height: 180px;
    }

    .dro-video-play-btn {
        opacity: 1;
    }
}


/* ---- Bottom row ---- */

.dro-bottom-row {
    margin-top: 6px;
}


/* ---- Panel (white card wrapper) ---- */

.dro-panel {
    background: #fff;
    border-radius: 12px;
    padding: 20px 18px 10px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
    margin-bottom: 24px;
}

.dro-panel-head {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 14px;
    margin-bottom: 6px;
}


/* ---- Notification items ---- */

.dro-notification-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
            align-items: flex-start;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 8px;
    margin-bottom: 2px;
}

.dro-notification-item.unread {
    background-color: #f0f9f1;
}

/* Category badges — shared by video cards */
.dro-video-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.dro-cat-green  { background-color: rgba(42, 125, 46, 0.1);  color: #2A7D2E; }
.dro-cat-orange { background-color: rgba(230, 126, 34, 0.1); color: #e67e22; }
.dro-cat-blue   { background-color: rgba(52, 152, 219, 0.1); color: #3498db; }

.dro-notif-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 1px;
}

.dro-notif-green  { background-color: rgba(42, 125, 46, 0.1); color: #2A7D2E; }
.dro-notif-orange { background-color: rgba(230, 126, 34, 0.12); color: #E67E22; }
.dro-notif-red    { background-color: rgba(192, 57, 43, 0.1); color: #C0392B; }
.dro-notif-grey   { background-color: #f4f4f4; color: #ccc; }

a.dro-notification-item {
    text-decoration: none;
    color: inherit;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

a.dro-notification-item:hover {
    background-color: #f4f4f4;
}

a.dro-notification-item.unread:hover {
    background-color: #e6f4e7;
}

.dro-notif-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
}

.dro-notif-text {
    font-size: 13px;
    color: #777;
    font-family: "Roboto", sans-serif;
    margin-bottom: 3px;
    line-height: 1.4;
}

.dro-notification-item.unread .dro-notif-text {
    color: #2F2F2F;
    font-weight: 500;
}

.dro-notif-time {
    font-size: 11px;
    color: #ccc;
    font-family: "Roboto", sans-serif;
}


/* ---- Subscription info card (dashboard) ---- */

.dro-subscription-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 22px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
    margin-bottom: 24px;
}

.dro-sub-card-heading {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 12px;
}

.dro-sub-card-plan {
    font-size: 11px;
    color: #bbb;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.dro-sub-card-price-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dro-sub-card-price {
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    line-height: 1;
}

.dro-sub-card-price small {
    font-size: 13px;
    color: #aaa;
    font-weight: 400;
}

.dro-active-badge {
    display: inline-block;
    background-color: rgba(42, 125, 46, 0.1);
    color: #2A7D2E;
    font-size: 10px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    padding: 3px 10px;
    border-radius: 20px;
}

.dro-sub-card-next {
    font-size: 13px;
    color: #999;
    font-family: "Roboto", sans-serif;
    margin-bottom: 0;
}

.dro-sub-card-next i {
    color: #2A7D2E;
}

.dro-sub-card-divider {
    border-color: #f0f0f0;
    margin: 18px 0;
}

.dro-sub-manage-btn {
    font-size: 14px;
    padding: 12px 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.dro-cancel-wrap {
    margin-top: 12px;
}

.dro-cancel-link {
    font-size: 12px;
    color: #ccc;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}

.dro-cancel-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}


/* ================================================
   VIDEO LIBRARY PAGE  —  video-library.html
   ================================================ */

/* ---- Toolbar: search + category filters ---- */

.dro-library-toolbar {
    background: #fff;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 28px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

.dro-library-search-wrap {
    margin-bottom: 18px;
}

.dro-library-search-wrap form {
    position: relative;
}

.dro-library-search-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #aaa;
    font-size: 14px;
    pointer-events: none;
}

.dro-library-search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid rgba(11, 61, 44, 0.12);
    border-radius: 8px;
    background-color: #FCFAF7;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: #2F2F2F;
}

.dro-library-search-input:focus {
    border-color: #0B3D2C;
    background-color: #fff;
    outline: none;
}

/* Category filter pills */
.dro-library-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
}

.dro-filter-btn {
    background: #FCFAF7;
    border: 1px solid rgba(11, 61, 44, 0.12);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #666;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dro-filter-btn:hover {
    border-color: #2A7D2E;
    color: #0B3D2C;
}

.dro-filter-btn.active {
    background-color: #0B3D2C;
    border-color: #0B3D2C;
    color: #fff;
}


/* ---- Video grid cards ---- */

.dro-library-grid {
    margin-bottom: 10px;
}

.dro-library-item {
    margin-bottom: 24px;
}

.dro-lib-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
    -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.dro-lib-card:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 10px 28px rgba(11, 61, 44, 0.12);
            box-shadow: 0 10px 28px rgba(11, 61, 44, 0.12);
    text-decoration: none;
    color: inherit;
}

.dro-lib-thumb {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    background-color: #0B3D2C;
}

.dro-lib-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.dro-lib-thumb img.is-broken {
    display: none;
}

.dro-lib-thumb img.is-broken + .dro-video-play-btn {
    opacity: 1;
}

.dro-lib-thumb .dro-video-play-btn {
    opacity: 0;
}

.dro-lib-card:hover .dro-video-play-btn {
    opacity: 1;
}

.dro-lib-body {
    padding: 16px 18px 18px;
}

.dro-lib-title {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #0B3D2C;
    margin-bottom: 10px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dro-lib-date {
    font-size: 12px;
    color: #bbb;
    font-family: "Roboto", sans-serif;
}

.dro-lib-date i {
    margin-right: 4px;
    color: #2A7D2E;
}

/* Locked state — for non-member preview (Stage 2) */
.dro-lib-card.dro-lib-locked .dro-lib-thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 44, 0.65);
    z-index: 2;
}

.dro-lib-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 16px;
}

.dro-lib-lock-overlay i {
    font-size: 28px;
    margin-bottom: 8px;
}

.dro-lib-lock-overlay span {
    font-size: 12px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}


/* ---- Empty state ---- */

.dro-library-empty {
    display: none;
    text-align: center;
    padding: 50px 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 28px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

.dro-library-empty i {
    font-size: 36px;
    color: #ddd;
    margin-bottom: 14px;
}

.dro-library-empty p {
    font-size: 14px;
    color: #999;
    font-family: "Roboto", sans-serif;
    margin-bottom: 0;
}


/* ---- Pagination ---- */

.dro-library-pagination {
    margin-top: 10px;
    margin-bottom: 10px;
}

.dro-library-pagination .page-link {
    color: #0B3D2C;
    border-color: rgba(11, 61, 44, 0.12);
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    margin: 0 3px;
}

.dro-library-pagination .page-item.active .page-link {
    background-color: #0B3D2C;
    border-color: #0B3D2C;
    color: #fff;
}

.dro-library-pagination .page-link:hover {
    background-color: rgba(42, 125, 46, 0.08);
    border-color: #2A7D2E;
    color: #0B3D2C;
}

.dro-library-pagination .page-item.disabled .page-link {
    color: #ccc;
}

@media (max-width: 575px) {
    .dro-library-toolbar {
        padding: 16px;
    }

    .dro-filter-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}


/* ================================================
   SINGLE VIDEO PAGE  —  single-video.html
   ================================================ */

/* ---- Back link ---- */

.dro-video-back {
    margin-bottom: 20px;
}

.dro-video-back-link {
    font-size: 14px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #2A7D2E;
    text-decoration: none;
}

.dro-video-back-link:hover {
    color: #0B3D2C;
    text-decoration: none;
}

.dro-video-back-link i {
    margin-right: 6px;
}


/* ---- Video player ---- */

.dro-video-player-wrap {
    margin-bottom: 24px;
}

.dro-video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #0B3D2C;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 20px rgba(11, 61, 44, 0.12);
            box-shadow: 0 4px 20px rgba(11, 61, 44, 0.12);
}

.dro-video-player-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.dro-video-player-play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(11, 61, 44, 0.9);
    border: 3px solid #fff;
    color: #fff;
    font-size: 24px;
    padding-left: 5px;
    cursor: pointer;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
            transition: background-color 0.2s ease, transform 0.2s ease;
}

.dro-video-player-play:hover {
    background-color: #2A7D2E;
    -webkit-transform: translate(-50%, -50%) scale(1.06);
            transform: translate(-50%, -50%) scale(1.06);
}

.dro-video-player-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.dro-video-player-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.dro-video-embed-hidden {
    display: none;
}

.dro-video-player.dro-is-playing .dro-video-player-poster,
.dro-video-player.dro-is-playing .dro-video-player-play {
    display: none;
}

.dro-video-player.dro-is-playing .dro-video-player-embed {
    display: block;
}


/* ---- Video info ---- */

.dro-video-info-panel {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

.dro-video-page-title {
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-top: 10px;
    margin-bottom: 12px;
    line-height: 1.35;
}

.dro-video-page-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #999;
    font-family: "Roboto", sans-serif;
}

.dro-video-page-meta i {
    color: #2A7D2E;
    margin-right: 5px;
}


/* ---- Description panel ---- */

.dro-video-desc-panel {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

.dro-panel-label {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 16px;
}

.dro-video-desc-panel p {
    font-size: 14px;
    color: #666;
    font-family: "Roboto", sans-serif;
    line-height: 1.75;
    margin-bottom: 12px;
}

.dro-video-topics {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.dro-video-topics li {
    font-size: 14px;
    color: #555;
    font-family: "Roboto", sans-serif;
    padding: 6px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}

.dro-video-topics li i {
    color: #2A7D2E;
    font-size: 12px;
}


/* ---- Comments ---- */

.dro-comments-panel {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

.dro-comment-count {
    font-weight: 400;
    color: #bbb;
    font-size: 14px;
}

/* Comment form */
.dro-comment-form {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.dro-comment-form-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.dro-comment-form-fields {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
}

.dro-comment-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(11, 61, 44, 0.15);
    border-radius: 8px;
    background-color: #FCFAF7;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: #2F2F2F;
    resize: vertical;
    min-height: 90px;
    margin-bottom: 12px;
}

.dro-comment-textarea:focus {
    border-color: #0B3D2C;
    background-color: #fff;
    outline: none;
}

.dro-comment-submit {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
}

/* Comment list */
.dro-comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    padding: 18px 0;
}

.dro-comment-replies .dro-comment-item {
    padding: 12px 0;
}

.dro-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0B3D2C;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.dro-avatar-green { background-color: #2A7D2E; }
.dro-avatar-orange { background-color: #e67e22; }

.dro-comment-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
}

.dro-comment-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.dro-comment-head strong {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #0B3D2C;
}

.dro-comment-head span {
    font-size: 12px;
    color: #ccc;
    font-family: "Roboto", sans-serif;
}

.dro-comment-body p {
    font-size: 14px;
    color: #666;
    font-family: "Roboto", sans-serif;
    line-height: 1.65;
    margin-bottom: 10px;
}

/* Comment actions — like & reply */
.dro-comment-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.dro-comment-like-btn,
.dro-comment-reply-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #999;
    cursor: pointer;
    -webkit-transition: color 0.15s ease;
            transition: color 0.15s ease;
}

.dro-comment-like-btn i,
.dro-comment-reply-btn i {
    margin-right: 4px;
}

.dro-comment-like-btn:hover,
.dro-comment-reply-btn:hover {
    color: #0B3D2C;
}

.dro-comment-like-btn.dro-liked {
    color: #2A7D2E;
}

.dro-comment-like-btn.dro-liked i {
    font-weight: 900;
}

/* Nested replies */
.dro-comment-replies {
    margin-top: 14px;
    padding-left: 12px;
    border-left: 2px solid #f0f0f0;
}

.dro-comment-reply {
    padding: 12px 0;
    border-bottom: none;
}

.dro-comment-reply .dro-comment-avatar {
    width: 32px;
    height: 32px;
    font-size: 11px;
}

.dro-comment-reply .dro-comment-body p {
    font-size: 13px;
}

/* Reply form */
.dro-reply-form-wrap {
    margin-top: 12px;
    margin-bottom: 4px;
}

.dro-reply-form-hidden {
    display: none;
}

.dro-reply-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(11, 61, 44, 0.15);
    border-radius: 8px;
    background-color: #FCFAF7;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
    resize: vertical;
    min-height: 60px;
    margin-bottom: 8px;
}

.dro-reply-textarea:focus {
    border-color: #0B3D2C;
    background-color: #fff;
    outline: none;
}

.dro-post-reply-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
}

/* Top-level comment items only get bottom border */
.dro-comment-list > .dro-comment-item {
    border-bottom: 1px solid #f4f4f4;
}

.dro-comment-list > .dro-comment-item:last-child {
    border-bottom: none;
}


/* ---- Video engagement stats (views, comments, likes) ---- */

.dro-video-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    margin-bottom: 8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.dro-video-stats span {
    font-size: 12px;
    color: #999;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.dro-video-stats i {
    color: #2A7D2E;
    margin-right: 4px;
    font-size: 11px;
}

.dro-video-stats-inline {
    margin-bottom: 0;
    width: 100%;
}

.dro-video-row-meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 16px;
}

/* Video page — like button & views */
.dro-video-engage-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.dro-engage-btn {
    background: #FCFAF7;
    border: 1px solid rgba(11, 61, 44, 0.12);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #666;
    cursor: pointer;
    -webkit-transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
            transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.dro-engage-btn:hover {
    border-color: #2A7D2E;
    color: #0B3D2C;
}

.dro-engage-btn.dro-liked {
    background-color: rgba(42, 125, 46, 0.1);
    border-color: #2A7D2E;
    color: #2A7D2E;
}

.dro-engage-btn.dro-liked i {
    font-weight: 900;
}

.dro-engage-stat {
    font-size: 13px;
    color: #999;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.dro-engage-stat i {
    color: #2A7D2E;
    margin-right: 5px;
}


/* ---- Related videos sidebar ---- */

.dro-related-panel {
    background: #fff;
    border-radius: 12px;
    padding: 20px 18px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
    margin-bottom: 24px;
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
}

.dro-related-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f4f4f4;
    text-decoration: none;
    color: inherit;
    -webkit-transition: background-color 0.15s ease;
            transition: background-color 0.15s ease;
}

.dro-related-item:last-of-type {
    border-bottom: none;
}

.dro-related-item:hover {
    text-decoration: none;
    color: inherit;
    background-color: #FCFAF7;
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
}

.dro-related-thumb {
    position: relative;
    width: 100px;
    min-width: 100px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #0B3D2C;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.dro-related-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.dro-related-thumb .dro-video-duration {
    font-size: 9px;
    padding: 1px 5px;
    bottom: 4px;
    right: 4px;
}

.dro-related-info h4 {
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #0B3D2C;
    margin-bottom: 0;
    margin-top: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dro-related-info .dro-video-cat {
    font-size: 9px;
    padding: 2px 8px;
    margin-bottom: 0;
}

.dro-related-view-all {
    display: block;
    text-align: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    font-weight: 600;
    color: #2A7D2E;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}

.dro-related-view-all:hover {
    color: #0B3D2C;
    text-decoration: none;
}

.dro-related-view-all i {
    margin-left: 6px;
    font-size: 11px;
}

@media (max-width: 991px) {
    .dro-related-panel {
        position: static;
        margin-top: 10px;
    }

    .dro-video-page-title {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .dro-video-info-panel,
    .dro-video-desc-panel,
    .dro-comments-panel {
        padding: 18px 16px;
    }

    .dro-comment-form-user {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .dro-video-player-play {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }
}


/* ================================================
   ADMIN DASHBOARD PAGE  —  admin-dashboard.html
   ================================================ */

/* ---- Admin sidebar label ---- */

.dro-admin-sidebar-label {
    padding: 20px 22px 12px;
    font-size: 11px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #0B3D2C;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(11, 61, 44, 0.08);
    margin-bottom: 4px;
}

.dro-admin-sidebar-label i {
    margin-right: 6px;
    color: #2A7D2E;
}

/* ---- Admin topbar badge ---- */

.dro-admin-topbar-badge {
    font-size: 11px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #0B3D2C;
    background-color: rgba(241, 210, 169, 0.5);
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.dro-admin-avatar {
    background-color: #2A7D2E;
}

.dro-admin-profile-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #0B3D2C;
    background-color: rgba(241, 210, 169, 0.45);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 4px;
}

.dro-admin-profile-badge i {
    margin-right: 5px;
    color: #2A7D2E;
}

.dro-admin-profile-summary {
    text-align: left;
}

.dro-admin-profile-summary h4 {
    text-align: left;
}

.dro-admin-profile-summary .dro-profile-stats-list li {
    text-align: left;
}


/* ---- Admin panels ---- */

.dro-admin-panel {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

.dro-admin-panel .dro-panel-label i {
    color: #2A7D2E;
    font-size: 14px;
}

.dro-admin-panel-sub {
    font-size: 13px;
    color: #999;
    font-family: "Roboto", sans-serif;
    margin-top: -8px;
    margin-bottom: 20px;
}


/* ---- Admin forms ---- */

.dro-admin-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #0B3D2C;
    margin-bottom: 8px;
}

.dro-admin-field {
    margin-bottom: 18px;
}

.dro-admin-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(11, 61, 44, 0.15);
    border-radius: 8px;
    background-color: #FCFAF7;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: #2F2F2F;
}

.dro-admin-input:focus {
    border-color: #0B3D2C;
    background-color: #fff;
    outline: none;
}

.dro-admin-textarea {
    resize: vertical;
    min-height: 100px;
}

.dro-admin-select {
    height: auto;
    cursor: pointer;
}

/* Custom file upload */
.dro-admin-file-wrap {
    position: relative;
}

.dro-admin-file {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.dro-admin-file-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px dashed rgba(11, 61, 44, 0.25);
    border-radius: 8px;
    background-color: #FCFAF7;
    font-size: 14px;
    color: #888;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
    margin-bottom: 0;
    -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
            transition: border-color 0.2s ease, background-color 0.2s ease;
}

.dro-admin-file-label:hover {
    border-color: #2A7D2E;
    background-color: #fff;
    color: #0B3D2C;
}

.dro-admin-file-label i {
    color: #2A7D2E;
    font-size: 16px;
}

.dro-admin-file:focus + .dro-admin-file-label {
    border-color: #0B3D2C;
    border-style: solid;
}

/* Success alerts */
.dro-admin-success {
    display: none;
    margin-bottom: 18px;
    padding: 13px 18px;
    border-radius: 8px;
    background-color: #f0faf2;
    border: 1px solid #a8d5b0;
    color: #1a6b2a;
    font-size: 14px;
    line-height: 1.5;
}

.dro-admin-success i {
    margin-right: 8px;
}

.dro-admin-error {
    display: none;
    margin-bottom: 18px;
    padding: 13px 18px;
    border-radius: 8px;
    background-color: #fff3f3;
    border: 1px solid #f5c2c2;
    color: #c0392b;
    font-size: 14px;
    line-height: 1.5;
}

.dro-admin-error i {
    margin-right: 8px;
}


/* ---- Admin tables ---- */

.dro-admin-table-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.dro-admin-table-head .dro-panel-label {
    margin-bottom: 0;
}

.dro-admin-table-count {
    font-size: 12px;
    color: #bbb;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.dro-admin-table {
    margin-bottom: 0;
}

.dro-admin-table thead th {
    font-size: 11px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-top: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 12px;
    white-space: nowrap;
}

.dro-admin-table tbody td {
    font-size: 14px;
    color: #555;
    font-family: "Roboto", sans-serif;
    padding: 14px 12px;
    vertical-align: middle;
    border-top: 1px solid #f8f8f8;
}

.dro-admin-table tbody td strong {
    color: #0B3D2C;
    font-weight: 600;
}

/* Status badges */
.dro-status-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.dro-status-active {
    background-color: rgba(42, 125, 46, 0.1);
    color: #2A7D2E;
}

.dro-status-pending {
    background-color: rgba(149, 165, 166, 0.15);
    color: #7f8c8d;
}

.dro-status-suspended {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.dro-status-completed {
    background-color: rgba(42, 125, 46, 0.1);
    color: #2A7D2E;
}

.dro-status-failed {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.dro-status-refunded {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

/* Action buttons */
.dro-admin-actions {
    white-space: nowrap;
}

.dro-action-btn {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 4px;
    -webkit-transition: background-color 0.15s ease, color 0.15s ease;
            transition: background-color 0.15s ease, color 0.15s ease;
}

.dro-action-view {
    color: #0B3D2C;
    background-color: rgba(11, 61, 44, 0.06);
}

.dro-action-view:hover {
    background-color: #0B3D2C;
    color: #fff;
}

.dro-action-suspend,
.dro-action-cancel {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.06);
}

.dro-action-suspend:hover,
.dro-action-cancel:hover {
    background-color: #e74c3c;
    color: #fff;
}

.dro-action-reactivate {
    color: #2A7D2E;
    background-color: rgba(42, 125, 46, 0.08);
}

.dro-action-reactivate:hover {
    background-color: #2A7D2E;
    color: #fff;
}

.dro-action-edit {
    color: #0B3D2C;
    background-color: rgba(11, 61, 44, 0.06);
}

.dro-action-edit:hover {
    background-color: #0B3D2C;
    color: #fff;
}

.dro-action-delete {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.06);
}

.dro-action-delete:hover {
    background-color: #e74c3c;
    color: #fff;
}

/* Equal-height admin panels */
.dro-admin-row-equal {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.dro-admin-row-equal > [class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.dro-admin-panel-fill {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
}

.dro-admin-panel-fill .dro-admin-form {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.dro-admin-form-submit {
    margin-top: auto;
    padding-top: 4px;
}

.dro-admin-textarea-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 120px;
}

/* Admin toolbar — search + filters */
.dro-admin-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 18px;
}

.dro-admin-search-wrap {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 200px;
    max-width: 320px;
}

.dro-admin-search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #bbb;
    font-size: 13px;
    pointer-events: none;
}

.dro-admin-search-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid rgba(11, 61, 44, 0.12);
    border-radius: 8px;
    background-color: #FCFAF7;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: #2F2F2F;
}

.dro-admin-search-input:focus {
    border-color: #0B3D2C;
    background-color: #fff;
    outline: none;
}

.dro-admin-filters {
    margin-bottom: 0;
}

.dro-admin-filters .dro-filter-btn {
    padding: 7px 14px;
    font-size: 12px;
}

/* Video cell in admin table */
.dro-admin-video-cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    min-width: 220px;
}

.dro-admin-video-thumb {
    width: 64px;
    height: 40px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background-color: #f0f0f0;
}

.dro-admin-video-cell strong {
    font-size: 13px;
    line-height: 1.4;
}

.dro-admin-comment-text {
    display: block;
    max-width: 320px;
    line-height: 1.5;
}

.dro-admin-comment-flagged {
    color: #e74c3c;
}

.dro-admin-table .dro-video-cat {
    font-size: 11px;
}

/* Admin overview quick links */
.dro-admin-quick-row {
    margin-top: 4px;
}

.dro-admin-quick-card {
    display: block;
    background: #FCFAF7;
    border: 1px solid rgba(11, 61, 44, 0.08);
    border-radius: 10px;
    padding: 20px 18px;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
    -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dro-admin-quick-card:hover {
    text-decoration: none;
    color: inherit;
    border-color: #2A7D2E;
    -webkit-box-shadow: 0 4px 14px rgba(11, 61, 44, 0.08);
            box-shadow: 0 4px 14px rgba(11, 61, 44, 0.08);
}

.dro-admin-quick-card i {
    font-size: 22px;
    color: #2A7D2E;
    margin-bottom: 10px;
    display: block;
}

.dro-admin-quick-card strong {
    display: block;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 4px;
}

.dro-admin-quick-card span {
    font-size: 12px;
    color: #999;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
}

.dro-admin-link {
    font-size: 13px;
    font-weight: 600;
    color: #2A7D2E;
    font-family: "Roboto", sans-serif;
}

.dro-admin-link:hover {
    color: #0B3D2C;
    text-decoration: none;
}

.dro-admin-page-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.dro-admin-help-panel {
    height: 100%;
}

.dro-admin-help-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.dro-admin-help-list li {
    font-size: 13px;
    color: #666;
    font-family: "Roboto", sans-serif;
    padding: 8px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
}

.dro-admin-help-list li i {
    color: #2A7D2E;
    margin-top: 3px;
    font-size: 11px;
}

.dro-admin-notif-history {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dro-admin-notif-history li {
    padding: 14px 0;
    border-bottom: 1px solid #f4f4f4;
}

.dro-admin-notif-history li:last-child {
    border-bottom: none;
}

.dro-admin-notif-history strong {
    display: block;
    font-size: 14px;
    color: #0B3D2C;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 4px;
}

.dro-admin-notif-history span {
    font-size: 12px;
    color: #999;
    font-family: "Roboto", sans-serif;
}

.dro-admin-video-thumb-placeholder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: linear-gradient(135deg, #0B3D2C, #2A7D2E);
    color: #fff;
    font-size: 14px;
}

.dro-btn-outline {
    background: transparent !important;
    color: #0B3D2C !important;
    border: 2px solid #0B3D2C !important;
}

.dro-btn-outline:hover {
    background: #0B3D2C !important;
    color: #fff !important;
}

/* Upload progress bar */
.dro-upload-progress-wrap {
    margin-bottom: 20px;
    padding: 16px 18px;
    background-color: #FCFAF7;
    border: 1px solid rgba(11, 61, 44, 0.1);
    border-radius: 10px;
}

.dro-upload-progress-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #0B3D2C;
}

.dro-upload-progress-bar {
    height: 10px;
    background-color: #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
}

.dro-upload-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0B3D2C, #2A7D2E);
    border-radius: 20px;
    -webkit-transition: width 0.15s ease;
            transition: width 0.15s ease;
}

.dro-upload-progress-meta,
.dro-upload-progress-file,
.dro-upload-file-size {
    font-size: 12px;
    color: #888;
    font-family: "Roboto", sans-serif;
    margin-top: 8px;
    margin-bottom: 0;
}

.dro-upload-progress-file {
    color: #666;
}

@media (max-width: 991px) {
    .dro-admin-toolbar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
    }

    .dro-admin-search-wrap {
        max-width: none;
    }

    .dro-admin-filters {
        overflow-x: auto;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        padding-bottom: 4px;
    }
}

@media (max-width: 767px) {
    .dro-admin-panel {
        padding: 18px 16px;
    }

    .dro-admin-table thead {
        display: none;
    }

    .dro-admin-table tbody tr {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .dro-admin-table tbody td {
        display: block;
        padding: 4px 0;
        border: none;
    }

    .dro-admin-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #999;
        font-size: 11px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 2px;
    }

    .dro-admin-actions {
        margin-top: 8px;
    }
}


/* ================================================
   PROFILE PAGE  —  profile.html
   ================================================ */

.dro-profile-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

.dro-profile-avatar-wrap {
    position: relative;
    width: 80px;
    margin: 0 auto 12px;
}

.dro-profile-avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #0B3D2C;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.dro-profile-avatar-lg.has-photo {
    background-color: #f4f4f4;
}

.dro-profile-avatar-lg .dro-avatar-img,
.dro-topbar-avatar .dro-avatar-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.dro-profile-avatar-edit {
    position: absolute;
    right: -4px;
    bottom: -2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #2A7D2E;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 12px;
    cursor: pointer;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 2px 6px rgba(11, 61, 44, 0.15);
            box-shadow: 0 2px 6px rgba(11, 61, 44, 0.15);
    margin-bottom: 0;
    -webkit-transition: background-color 0.2s ease;
            transition: background-color 0.2s ease;
}

.dro-profile-avatar-edit:hover {
    background-color: #0B3D2C;
    color: #fff;
}

.dro-profile-photo-remove {
    display: inline-block;
    background: none;
    border: none;
    font-size: 12px;
    font-family: "Roboto", sans-serif;
    color: #c0392b;
    cursor: pointer;
    padding: 0 0 12px;
    margin-bottom: 4px;
}

.dro-profile-photo-remove i {
    margin-right: 4px;
}

.dro-profile-photo-remove:hover {
    color: #922b21;
}

.dro-profile-photo-error {
    font-size: 12px;
    color: #c0392b;
    font-family: "Roboto", sans-serif;
    margin-top: 8px;
    margin-bottom: 0;
}

.dro-topbar-avatar.has-photo {
    background-color: #f4f4f4;
    padding: 0;
    overflow: hidden;
}

.dro-profile-name {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 4px;
}

.dro-profile-email {
    font-size: 14px;
    color: #999;
    font-family: "Roboto", sans-serif;
    margin-bottom: 14px;
}

.dro-profile-since {
    font-size: 12px;
    color: #bbb;
    font-family: "Roboto", sans-serif;
    margin-top: 14px;
    margin-bottom: 0;
}

.dro-profile-since i {
    color: #2A7D2E;
    margin-right: 4px;
}

.dro-profile-sub-summary {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

.dro-profile-sub-summary h4 {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 12px;
}

.dro-profile-plan,
.dro-profile-next-bill {
    font-size: 13px;
    color: #666;
    font-family: "Roboto", sans-serif;
    margin-bottom: 8px;
}

.dro-profile-stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dro-profile-stats-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f4f4f4;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: #666;
}

.dro-profile-stats-list li:last-child {
    border-bottom: none;
}

.dro-profile-stats-list li strong {
    color: #0B3D2C;
    font-weight: 600;
}

.dro-text-green {
    color: #2A7D2E !important;
}

.dro-field-optional {
    font-weight: 400;
    color: #bbb;
    font-size: 12px;
}


/* ================================================
   SUBSCRIPTION MANAGE  —  subscription-manage.html
   ================================================ */

.dro-sub-manage-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
            box-shadow: 0 2px 12px rgba(11, 61, 44, 0.06);
}

.dro-sub-manage-head h3 {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin: 10px 0 8px;
}

.dro-sub-manage-price {
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 20px;
}

.dro-sub-manage-price small {
    font-size: 14px;
    color: #aaa;
    font-weight: 400;
}

.dro-sub-manage-details {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.dro-sub-manage-details li {
    font-size: 14px;
    color: #666;
    font-family: "Roboto", sans-serif;
    padding: 8px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}

.dro-sub-manage-details li i {
    color: #2A7D2E;
    width: 18px;
    text-align: center;
}

.dro-sub-manage-note {
    font-size: 12px;
    color: #999;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    margin-bottom: 16px;
}

.dro-sub-reactivate-btn {
    display: none;
    margin-top: 0;
}

body.dro-sub-expired .dro-sub-manage-badge {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

body.dro-sub-expired #dro-reactivate-sub-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

body.dro-sub-expired #dro-cancel-sub-btn {
    display: none !important;
}

.dro-sub-upgrade-note {
    font-size: 13px;
    color: #888;
    font-family: "Roboto", sans-serif;
    margin-top: 16px;
    margin-bottom: 0;
}

.dro-sub-upgrade-note a {
    color: #2A7D2E;
    font-weight: 600;
}

/* Cancel modal */
.dro-cancel-modal .modal-content {
    border-radius: 12px;
    border: none;
    padding: 10px;
}

.dro-cancel-modal-icon {
    font-size: 48px;
    color: #e67e22;
    margin-bottom: 16px;
}

.dro-cancel-modal h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 12px;
}

.dro-cancel-modal p {
    font-size: 14px;
    color: #666;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    margin-bottom: 24px;
}

.dro-cancel-modal-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.dro-cancel-modal-btns .main-btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Fake payment modal */
.dro-payment-modal .modal-content {
    border-radius: 12px;
    border: none;
    padding: 10px 10px 20px;
}

.dro-payment-modal-icon {
    font-size: 42px;
    color: #2A7D2E;
    margin-bottom: 12px;
}

.dro-payment-modal h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 10px;
}

.dro-payment-modal-plan,
.dro-payment-modal-note {
    font-size: 14px;
    color: #666;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
}

.dro-payment-modal-note {
    margin-bottom: 18px;
}

.dro-payment-fields .form_group {
    margin-bottom: 14px;
}

.dro-payment-fields label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0B3D2C;
    margin-bottom: 6px;
}

.dro-payment-error {
    display: none;
    margin: 12px 0 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fdecea;
    color: #c0392b;
    font-size: 13px;
    text-align: left;
}

.dro-payment-error i {
    margin-right: 6px;
}

.dro-payment-modal-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.dro-payment-modal-btns .main-btn {
    min-width: 140px;
    padding: 10px 20px;
    font-size: 14px;
}

.dro-square-card-container {
    min-height: 56px;
    border: 1px solid #d9e2dd;
    border-radius: 8px;
    padding: 12px;
    background: #fff;
}

.dro-payment-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
}

/* Payment success animation */
.dro-payment-success {
    padding: 10px 6px 4px;
}

.dro-payment-success h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0B3D2C;
    margin: 14px 0 8px;
}

.dro-payment-success-message {
    font-size: 15px;
    color: #2F2F2F;
    margin-bottom: 8px;
    font-family: "Roboto", sans-serif;
}

.dro-payment-success-redirect {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
}

.dro-payment-success-check {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.dro-checkmark {
    width: 80px;
    height: 80px;
    display: block;
    stroke-width: 2;
    stroke: #2A7D2E;
    stroke-miterlimit: 10;
}

.dro-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: #2A7D2E;
    fill: none;
}

.dro-checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: #2A7D2E;
}

.dro-checkmark-animate .dro-checkmark-circle {
    -webkit-animation: doa-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
            animation: doa-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.dro-checkmark-animate .dro-checkmark-check {
    -webkit-animation: doa-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
            animation: doa-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@-webkit-keyframes doa-stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes doa-stroke {
    100% {
        stroke-dashoffset: 0;
    }
}


/* ================================================
   NOTIFICATIONS PAGE  —  notifications.html
   ================================================ */

.dro-notif-page-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.dro-mark-read-btn {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.dro-notif-filters {
    margin-bottom: 20px;
}

.dro-notif-centre-panel {
    padding: 8px 12px 12px;
}

.dro-notif-centre-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dro-notif-action-link {
    font-size: 12px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #2A7D2E;
    text-decoration: none;
    white-space: nowrap;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 6px 14px;
    border-radius: 6px;
    background-color: rgba(42, 125, 46, 0.08);
}

.dro-notif-action-link:hover {
    background-color: #0B3D2C;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 575px) {
    .dro-notif-centre-item {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .dro-notif-action-link {
        margin-left: 46px;
        margin-top: 4px;
    }
}


/* ================================================
   TEST TOGGLE  —  Subscription active / expired
   (Testing only — remove before WordPress launch)
   ================================================ */

.dro-test-toggle-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 4px 10px;
    background-color: #FCFAF7;
    border: 1px dashed rgba(11, 61, 44, 0.2);
    border-radius: 8px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.dro-test-toggle-label {
    font-size: 10px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.dro-test-toggle-status {
    font-size: 11px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    min-width: 48px;
    text-align: center;
}

.dro-test-toggle-status.dro-status-on {
    color: #2A7D2E;
}

.dro-test-toggle-status.dro-status-off {
    color: #e74c3c;
}

/* Toggle switch */
.dro-test-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    margin-bottom: 0;
    cursor: pointer;
}

.dro-test-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dro-test-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e74c3c;
    border-radius: 22px;
    -webkit-transition: background-color 0.25s ease;
            transition: background-color 0.25s ease;
}

.dro-test-slider::before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.25s ease;
            transition: transform 0.25s ease;
}

.dro-test-switch input:checked + .dro-test-slider {
    background-color: #2A7D2E;
}

.dro-test-switch input:checked + .dro-test-slider::before {
    -webkit-transform: translateX(18px);
            transform: translateX(18px);
}

@media (max-width: 575px) {
    .dro-test-toggle-label {
        display: none;
    }

    .dro-test-toggle-wrap {
        padding: 4px 8px;
    }
}


/* ---- Expired subscription banner ---- */

.dro-expired-banner {
    display: none;
    background-color: #fff5f5;
    border: 1px solid #f5c2c2;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 24px;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

body.dro-sub-expired .dro-expired-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dro-expired-banner > i {
    font-size: 28px;
    color: #e74c3c;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.dro-expired-banner-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
}

.dro-expired-banner-text strong {
    display: block;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 4px;
}

.dro-expired-banner-text p {
    font-size: 13px;
    color: #888;
    font-family: "Roboto", sans-serif;
    margin-bottom: 0;
    line-height: 1.5;
}

.dro-expired-banner .main-btn {
    white-space: nowrap;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 10px 18px;
    font-size: 13px;
}

@media (max-width: 767px) {
    body.dro-sub-expired .dro-expired-banner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
    }

    .dro-expired-banner .main-btn {
        width: 100%;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}


/* ---- Locked content when expired ---- */

body.dro-sub-expired .dro-lockable-group {
    position: relative;
}

body.dro-sub-expired .dro-video-row-card,
body.dro-sub-expired .dro-lib-card,
body.dro-sub-expired .dro-video-player-wrap {
    pointer-events: none;
    opacity: 0.55;
}

body.dro-sub-expired .dro-lockable-group::after,
body.dro-sub-expired #dro-library-grid.dro-lockable-group::after {
    content: "Subscribe to Watch";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #0B3D2C;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    -webkit-box-shadow: 0 4px 16px rgba(11, 61, 44, 0.2);
            box-shadow: 0 4px 16px rgba(11, 61, 44, 0.2);
}

body.dro-sub-expired #dro-library-grid.dro-lockable-group {
    position: relative;
    min-height: 200px;
}

body.dro-sub-expired .dro-video-player-wrap::after {
    content: "Subscription Required";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: rgba(11, 61, 44, 0.9);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    padding: 14px 28px;
    border-radius: 8px;
    z-index: 10;
}

body.dro-sub-expired .dro-sub-stat-value {
    color: #e74c3c !important;
}

body.dro-sub-expired .dro-sub-stat-trend {
    color: #e74c3c !important;
}

body.dro-sub-expired .dro-dash-sub-badge {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

body.dro-sub-expired .dro-profile-card .dro-active-badge {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

/* Academy plugin wrapper — prevent theme layout conflicts */
body.droa-academy-page {
    margin: 0;
    padding: 0;
}

body.droa-academy-page .droa-app {
    width: 100%;
    min-height: 100vh;
}

body.droa-academy-page #wpadminbar {
    display: none;
}

body.admin-bar.droa-academy-page {
    margin-top: 0 !important;
}

.dro-admin-bulk-bar .main-btn.bordered-btn,
#dro-admin-bulk-approve,
#dro-admin-bulk-reject,
#dro-admin-bulk-delete {
    color: #0B3D2C;
    border: 1px solid rgba(11, 61, 44, 0.28);
    background: #fff;
    opacity: 1;
    cursor: pointer;
    font-weight: 600;
}

.dro-admin-bulk-bar .main-btn.bordered-btn:hover,
#dro-admin-bulk-approve:hover {
    background: rgba(42, 125, 46, 0.12);
    color: #0B3D2C;
}

#dro-admin-bulk-reject:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
}

#dro-admin-bulk-delete:hover {
    background: rgba(231, 76, 60, 0.14);
    color: #c0392b;
}

.dro-link-btn {
    background: none;
    border: none;
    padding: 0;
    color: #2A7D2E;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.dro-link-btn:hover {
    color: #0B3D2C;
}

.dro-video-comments-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.dro-video-comment-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 61, 44, 0.08);
}

.dro-video-comment-item:last-child {
    border-bottom: none;
}

.dro-video-comment-item p {
    margin: 6px 0 0;
}

.dro-video-comment-meta {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 2px;
}

/* Admin panel — larger readable text */
[data-doa-admin-page="1"] .dro-sidebar-nav a,
.dro-admin-sidebar .dro-sidebar-nav a {
    font-size: 15px;
}

[data-doa-admin-page="1"] .dro-page-title,
.dro-admin-sidebar ~ .dro-dashboard-main .dro-page-title {
    font-size: 30px;
}

[data-doa-admin-page="1"] .dro-page-sub {
    font-size: 16px;
}

[data-doa-admin-page="1"] .dro-admin-table thead th {
    font-size: 13px;
}

[data-doa-admin-page="1"] .dro-admin-table tbody td,
[data-doa-admin-page="1"] .dro-admin-table tbody td strong {
    font-size: 15px;
}

[data-doa-admin-page="1"] .dro-admin-search-input,
[data-doa-admin-page="1"] .dro-admin-filters .dro-filter-btn,
[data-doa-admin-page="1"] .dro-action-btn {
    font-size: 14px;
}

[data-doa-admin-page="1"] .dro-stat-num {
    font-size: 34px;
}

[data-doa-admin-page="1"] .dro-stat-label {
    font-size: 14px;
}

[data-doa-admin-page="1"] .dro-notif-text,
[data-doa-admin-page="1"] .dro-admin-quick-card strong {
    font-size: 15px;
}

.dro-comment-view-meta {
    margin-bottom: 16px;
    font-size: 15px;
    color: #5f6f68;
}

.dro-comment-view-meta p {
    margin: 0 0 8px;
}

.dro-comment-view-body {
    font-size: 16px;
    line-height: 1.65;
    color: #1f2d27;
    white-space: pre-wrap;
    word-break: break-word;
    padding: 16px;
    background: #f7faf8;
    border-radius: 10px;
    border: 1px solid rgba(11, 61, 44, 0.08);
}

.doa-admin-loading-note {
    margin: 0;
    padding: 12px 0;
    font-size: 14px;
    color: #7f8c8d;
}

.doa-admin-video-link {
    color: inherit;
    text-decoration: none;
}

.doa-admin-video-link:hover {
    color: #0B3D2C;
    text-decoration: underline;
}

.dro-admin-analytics-panel {
    background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
    border: 1px solid rgba(11, 61, 44, 0.08);
}

.dro-admin-analytics-head {
    margin-bottom: 20px;
}

.dro-admin-analytics-intro {
    margin: 8px 0 0;
    font-size: 15px;
    color: #66756f;
}

.dro-admin-analytics-grid {
    row-gap: 16px;
}

.dro-admin-analytics-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(11, 61, 44, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(11, 61, 44, 0.04);
}

.dro-admin-analytics-card.dro-analytics-rank {
    display: block;
}

.dro-analytics-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0B3D2C;
    background: rgba(42, 125, 46, 0.12);
    flex-shrink: 0;
}

.dro-analytics-revenue .dro-analytics-card-icon {
    background: rgba(42, 125, 46, 0.14);
}

.dro-analytics-members .dro-analytics-card-icon {
    background: rgba(52, 152, 219, 0.14);
    color: #2471a3;
}

.dro-analytics-subs .dro-analytics-card-icon {
    background: rgba(241, 196, 15, 0.18);
    color: #9a7b0a;
}

.dro-analytics-card-body h4,
.dro-admin-analytics-card.dro-analytics-rank h4 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #0B3D2C;
}

.dro-admin-analytics-value {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2d27;
    line-height: 1.2;
}

.dro-admin-analytics-sub {
    margin: 6px 0 0;
    font-size: 14px;
    color: #66756f;
}

.dro-admin-rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dro-admin-rank-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 61, 44, 0.08);
    font-size: 15px;
}

.dro-admin-rank-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.dro-admin-rank-list li strong {
    color: #1f2d27;
    font-weight: 600;
}

/* Admin modals */
.dro-admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.dro-admin-modal.is-open {
    display: flex !important;
}

.dro-admin-modal[hidden]:not(.is-open) {
    display: none !important;
}

body.doa-modal-open {
    overflow: hidden;
}

.dro-admin-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 61, 44, 0.50);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 0;
}

.dro-admin-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
    max-height: calc(100vh - 48px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(11, 61, 44, 0.22), 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(11, 61, 44, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: dro-modal-in 0.22s ease;
}

.dro-admin-modal-dialog.dro-admin-modal-lg {
    max-width: 680px;
}

@keyframes dro-modal-in {
    from { opacity: 0; transform: translateY(-12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

.dro-admin-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(11, 61, 44, 0.09);
    background: linear-gradient(135deg, #f4faf7 0%, #ffffff 100%);
    flex-shrink: 0;
}

.dro-admin-modal-head h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #0B3D2C;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -0.2px;
}

.dro-admin-modal-close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(11, 61, 44, 0.08);
    color: #0B3D2C;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s;
    flex-shrink: 0;
}

.dro-admin-modal-close:hover {
    background: #0B3D2C;
    color: #fff;
}

.dro-admin-modal-body {
    padding: 24px 28px 28px;
    overflow-y: auto;
    flex: 1;
}

/* Member detail content inside modal */
.dro-admin-member-detail p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.55;
    padding: 10px 14px;
    background: #f8fbf9;
    border-radius: 8px;
    border-left: 3px solid rgba(11, 61, 44, 0.15);
}

.dro-admin-member-detail p strong {
    color: #0B3D2C;
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
}

.dro-admin-member-detail h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #0B3D2C;
    margin: 20px 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(11, 61, 44, 0.12);
    font-family: "Montserrat", sans-serif;
}

.dro-admin-member-detail h4:first-of-type {
    margin-top: 14px;
}

.dro-admin-member-detail ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dro-admin-member-detail ul li {
    font-size: 13.5px;
    color: #444;
    padding: 9px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    background: #f8fbf9;
    border: 1px solid rgba(11, 61, 44, 0.08);
    line-height: 1.5;
}

.dro-admin-member-detail ul li:empty,
.dro-admin-member-detail ul:empty::after {
    content: "None";
    display: block;
    font-size: 13px;
    color: #aaa;
    padding: 8px 12px;
    font-style: italic;
}

/* Video comments modal */
.dro-video-comments-body {
    padding-top: 8px;
}

.dro-video-comments-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dro-video-comment-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(11, 61, 44, 0.08);
}

.dro-video-comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dro-video-comment-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.dro-video-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B3D2C, #2A7D2E);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dro-video-comment-author {
    flex: 1;
    min-width: 0;
}

.dro-video-comment-author strong {
    display: block;
    font-size: 15px;
    color: #1f2d27;
    margin-bottom: 2px;
}

.dro-video-comment-meta {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
}

.dro-video-comment-text {
    margin: 0 0 0 52px;
    font-size: 15px;
    line-height: 1.6;
    color: #33443d;
    white-space: pre-wrap;
    word-break: break-word;
}

.dro-video-comment-loading,
.dro-video-comment-empty {
    text-align: center;
    color: #7f8c8d;
    font-size: 15px;
    padding: 24px 0 !important;
}

.dro-video-comment-loading i,
.dro-video-comment-empty i {
    margin-right: 8px;
    color: #2A7D2E;
}

/* Export CSV button */
.dro-btn-export {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #0B3D2C, #2A7D2E);
    color: #fff !important;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(11, 61, 44, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.dro-btn-export:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(11, 61, 44, 0.24);
    color: #fff !important;
    opacity: 0.95;
}

.dro-btn-export i {
    font-size: 15px;
}

#dro-admin-subscription-toolbar .dro-btn-export {
    margin-left: auto;
}

@media (max-width: 767px) {
    #dro-admin-subscription-toolbar .dro-btn-export {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .dro-video-comment-text {
        margin-left: 0;
        margin-top: 8px;
    }
}
