.wscb-packages {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
  }
  form{
    text-align: left;
  }
  #primary {
   
    margin: 0 auto;
    float: none;
}
  .wscb-package {
    background: #fff;
    border: 2px solid #6EC1E4;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(110,193,228,0.10);
    padding: 2rem 2.5rem;
    max-width: 340px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  .wscb-package:hover {
    border-color: #011E42;
    box-shadow: 0 8px 32px rgba(1,30,66,0.10);
  }
  .wscb-package h3 {
    color: #011E42;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .wscb-desc {
    color: #011E42;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  .wscb-price {
    color: #6EC1E4;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  .wscb-package .button.add_to_cart_button {
    background: #6EC1E4;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(110,193,228,0.10);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .wscb-package .button.add_to_cart_button:hover {
    background: #011E42;
    color: #fff;
  }
  
  /* Login Container */
  .wscb-login-container {
    max-width: 400px;
    margin: 3rem auto;
    background: #fff;
    border: 2px solid #6EC1E4;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(110,193,228,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
  }
  .wscb-login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .wscb-login-title {
    color: #011E42;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  .wscb-login-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  .wscb-login-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  /* Signup Styles */
  .wscb-signup-container {
    max-width: 500px;
    margin: 3rem auto;
    background: #fff;
    border: 2px solid #6EC1E4;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(110,193,228,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
  }
  
  .wscb-signup-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .wscb-signup-title {
    color: #011E42;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .wscb-signup-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
  }
  
  .wscb-signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .wscb-signup-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .wscb-signup-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .wscb-signup-btn {
    background: #6EC1E4 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0.75rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s, color 0.2s !important;
    box-shadow: 0 2px 8px rgba(110,193,228,0.10) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }
  
  .wscb-signup-btn:hover {
    background: #011E42 !important;
    color: #fff !important;
  }
  
  .wscb-signup-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
  }
  
  .wscb-signup-footer p {
    margin: 0;
    color: #6c757d;
    font-size: 1rem;
  }
  
  .wscb-link {
    color: #6EC1E4;
    text-decoration: none;
    font-weight: 600;
  }
  
  .wscb-link:hover {
    color: #011E42;
    text-decoration: underline;
  }
  
  /* Login Links Enhancement */
  .wscb-login-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .wscb-login-divider {
    color: #6c757d;
    font-weight: 300;
  }
  
  .wscb-signup-link {
    color: #6EC1E4;
    text-decoration: none;
    font-weight: 600;
  }
  
  .wscb-signup-link:hover {
    color: #011E42;
    text-decoration: underline;
  }
  .wscb-input {
    border: 1px solid #6EC1E4;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .wscb-input:focus {
    border-color: #011E42;
  }
  
  /* Textarea specific styling */
  textarea.wscb-input {
    resize: vertical;
    min-height: 200px;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    white-space: pre-wrap;
  }
  
  /* Script form styling */
  .wscb-script-form {
    margin-bottom: 2rem;
  }
  
  .wscb-back-button {
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  
  .wscb-script-form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  
  .wscb-script-form-col {
    flex: 1;
    min-width: 200px;
  }
  
  .wscb-script-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #011E42;
  }
  
  .wscb-script-content-section {
    margin-bottom: 1.5rem;
  }
  
  .wscb-script-content-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #011E42;
  }
  
  /* TinyMCE editor styling for frontend */
  .wp-editor-container {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .wp-editor-container .wp-editor-area {
    border: none;
    border-radius: 0;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
  }
  
  .wp-editor-tools {
    background: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
    padding: 8px 12px;
  }
  
  .wp-editor-toolbar {
    border: none;
    background: transparent;
  }
  
  .wp-editor-toolbar .mce-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    margin: 1px;
  }
  
  .wp-editor-toolbar .mce-btn:hover {
    background: #e1e5e9;
    border-color: #6EC1E4;
  }
  
  .wp-editor-toolbar .mce-btn.mce-active {
    background: #6EC1E4;
    border-color: #011E42;
  }
  .wscb-btn-primary {
    background: #6EC1E4;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(110,193,228,0.10);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .wscb-btn-primary:hover {
    background: #011E42;
    color: #fff;
  }
  .wscb-remember-label {
    font-size: 0.98rem;
    color: #011E42;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Dashboard */
  .wscb-dashboard-container {
    max-width: 600px;
    margin: 3rem auto;
    background: #fff;
    border: 2px solid #6EC1E4;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(110,193,228,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
  }
  .wscb-dashboard-title {
    color: #011E42;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  .wscb-dashboard-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .wscb-dashboard-item {
    background: #6EC1E4;
    color: #fff;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(110,193,228,0.10);
  }
  .wscb-dashboard-empty {
    color: #d8000c;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
  }
  
  .wscb-dashboard-flex {
    display: flex;
    min-height: 80vh;
  }
  .wscb-sidebar {
    min-width: 210px;
    background: #f7fafd;
    color: #011E42;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 0 2rem 0;
    border-radius: 18px 0 0 18px;
    box-shadow: 0 2px 16px rgba(110,193,228,0.10);
    margin-right: 2rem;
    height: 100%;
    border: 1.5px solid #e3eaf3;
  }

  .wscb-sidebar-link {
    display: block;
    padding: 1rem 2rem;
    color: #011E42;
    text-align: left;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    border-left: 4px solid transparent;
    border-radius: 0 20px 20px 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    margin-bottom: 0.5rem;
  }
  .wscb-sidebar-link:hover, .wscb-sidebar-active {
    background: #e6f4fa;
    color: #6EC1E4 !important;
    border-left: 4px solid #6EC1E4;
  }
  .wscb-sidebar-logout {
    margin-top: auto;
    background: #d8000c !important;
    color: #fff !important;
    border-left: 4px solid #d8000c !important;
    border-radius: 0 20px 20px 0;
  }
  .wscb-dashboard-main {
    flex: 1 1 0%;
    padding: 2.5rem 2rem 2rem 2rem;
    background: #fff;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 24px rgba(110,193,228,0.10);
  }
  /* Mobile sidebar toggle button */
  .wscb-sidebar-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    background: #6EC1E4;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(110,193,228,0.3);
    transition: all 0.3s ease;
  }
  
  /* Mobile sidebar close button */
  .wscb-sidebar-close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    color: #000;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .wscb-sidebar-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
  }
  
  .wscb-sidebar-toggle:hover {
    background: #011E42;
    transform: translateY(-2px);
  }
  
  .wscb-sidebar-toggle i {
    margin-right: 0.5rem;
  }
  
  /* Mobile overlay for sidebar */
  .wscb-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  @media (max-width: 900px) {
    .wscb-dashboard-flex {
      flex-direction: column;
      position: relative;
    }
    
    /* Only show toggle button if sidebar exists */
    .wscb-sidebar-toggle {
      display: block;
    }
    
    .wscb-sidebar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 280px;
      height: 100vh;
      min-width: auto;
      flex-direction: column;
      align-items: stretch;
      border-radius: 0;
      margin-right: 0;
      margin-bottom: 0;
      padding: 1.5rem;
      border: none;
      border-right: 2px solid #6EC1E4;
      z-index: 1001;
      transition: left 0.3s ease;
      overflow-y: auto;
    }
    
    .wscb-sidebar.wscb-sidebar-open {
      left: 0;
    }
    
    .wscb-sidebar-overlay.wscb-overlay-active {
      display: block;
    }
    
    .wscb-sidebar-close {
      display: block;
    }
    
    .wscb-sidebar-link {
      padding: 1rem 2rem;
      margin-bottom: 0.5rem;
      font-size: 1.08rem;
      border-radius: 0 20px 20px 0;
      border-left: 4px solid transparent;
    }
    
    .wscb-dashboard-main {
      border-radius: 16px;
      padding: 2rem 1rem 1rem 1rem;
      margin-top: 4rem;
    }
  }
  
  @media (max-width: 768px) {
    .wscb-sidebar {
      width: 100%;
      left: -100%;
    }
    
    .wscb-sidebar.wscb-sidebar-open {
      left: 0;
    }
    
    .wscb-sidebar-toggle {
      top: 0.5rem;
      left: 0.5rem;
      padding: 0.5rem 0.75rem;
      font-size: 0.9rem;
    }
    
    .wscb-sidebar-close {
      top: 0.5rem;
      right: 0.5rem;
      font-size: 1.2rem;
    }
    
    .wscb-dashboard-main {
      margin-top: 3rem;
      padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    
    /* Mobile table improvements */
    .wscb-table {
      font-size: 0.9rem;
      min-width: auto;
    }
    
    .wscb-table th,
    .wscb-table td {
      padding: 0.5rem 0.25rem;
    }
    
    /* Mobile form improvements */
    .wscb-form-row {
      flex-direction: column;
    }
    
    .wscb-form-col {
      width: 100%;
      margin-bottom: 1rem;
    }
    
    /* Mobile button improvements */
    .wscb-btn-primary {
      width: 100%;
      margin-bottom: 0.5rem;
    }
    
    /* Mobile package improvements */
    .wscb-packages {
      flex-direction: column;
      gap: 1rem;
    }
    
    .wscb-package {
      max-width: 100%;
      flex: none;
    }
  }
  
  @media (max-width: 480px) {
    .wscb-sidebar-toggle {
      top: 0.25rem;
      left: 0.25rem;
      padding: 0.4rem 0.6rem;
      font-size: 0.8rem;
    }
    
    .wscb-dashboard-main {
      margin-top: 2.5rem;
      padding: 0.5rem;
    }
    
    .wscb-dashboard-title {
      font-size: 1.5rem;
    }
    
    .wscb-table {
      font-size: 0.8rem;
    }
    
    .wscb-table th,
    .wscb-table td {
      padding: 0.25rem 0.1rem;
    }
  }
  
  .wscb-table-wrap {
    overflow-x: auto;
    margin-bottom: 2rem;
  }
  .wscb-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(110,193,228,0.07);
    font-size: 1rem;
    min-width: 700px;
  }
  .wscb-table th, .wscb-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e3eaf3;
  }
  .wscb-table th {
    background: #f7fafd;
    color: #011E42;
    font-weight: 700;
    border-top: 1.5px solid #e3eaf3;
  }
  .wscb-table tr:last-child td {
    border-bottom: none;
  }
  .wscb-table td {
    vertical-align: middle;
  }
  .wscb-table .wscb-btn-primary {
    margin-right: 0.5rem;
    margin-bottom: 0.2rem;
    font-size: 0.98rem;
    padding: 0.5rem 1.1rem;
  }
  @media (max-width: 900px) {
    .wscb-table {
      min-width: 500px;
      font-size: 0.97rem;
    }
  }
  
  /* Dashboard Styles */
  .wscb-dashboard-header {
      margin-bottom: 2rem;
  }
  
  .wscb-dashboard-subtitle {
      color: #666;
      margin-top: 0.5rem;
      font-size: 1.1rem;
  }
  
  /* Statistics Grid */
  .wscb-stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
  }
  
  .wscb-stat-card {
      background: white;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border: 1px solid #e1e5e9;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
  }
  
  .wscb-stat-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  
  .wscb-stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #6EC1E4, #011E42);
  }
  
  .wscb-stat-icon {
      font-size: 2rem;
      color: #6EC1E4;
      margin-bottom: 1rem;
  }
  
  .wscb-stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #011E42;
      line-height: 1;
      margin-bottom: 0.5rem;
  }
  
  .wscb-stat-label {
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 0.25rem;
  }
  
  .wscb-stat-subtitle {
      font-size: 0.9rem;
      color: #666;
  }
  
  /* Section Styles */
  .wscb-section {
      margin-bottom: 2rem;
  }
  
  .wscb-section-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #011E42;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #e1e5e9;
  }
  
  /* Package Card */
  .wscb-package-card {
      background: white;
      border-radius: 12px;
      padding: 0.5rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border: 1px solid #e1e5e9;
  }
  
  .wscb-package-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
  }
  
  .wscb-package-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: #011E42;
  }
  
  .wscb-package-badge {
      background: #28a745;
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
  }
  
  .wscb-package-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 1.5rem;
  }
  
  .wscb-package-detail {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem;
      background: #f8f9fa;
      border-radius: 8px;
  }
  
  .wscb-detail-label {
      font-weight: 600;
      color: #666;
  }
  
  .wscb-detail-value {
      font-weight: 700;
      color: #011E42;
  }
  
  /* Usage Bars */
  .wscb-package-usage {
      border-top: 1px solid #e1e5e9;
      padding-top: 1rem;
  }
  
  .wscb-usage-item {
      margin-bottom: 1rem;
  }
  
  .wscb-usage-item:last-child {
      margin-bottom: 0;
  }
  
  .wscb-usage-label {
      font-weight: 600;
      color: #333;
      margin-bottom: 0.5rem;
  }
  
  .wscb-usage-bar {
      height: 8px;
      background: #e1e5e9;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 0.25rem;
  }
  
  .wscb-usage-fill {
      height: 100%;
      background: linear-gradient(90deg, #6EC1E4, #011E42);
      border-radius: 4px;
      transition: width 0.3s ease;
  }
  
  .wscb-usage-text {
      font-size: 0.9rem;
      color: #666;
      text-align: right;
  }
  
  /* History List */
  .wscb-history-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }
  
  .wscb-history-item {
      display: flex;
      align-items: center;
      background: white;
      border-radius: 8px;
      padding: 1rem;
      box-shadow: 0 1px 5px rgba(0,0,0,0.1);
      border: 1px solid #e1e5e9;
  }
  
  .wscb-history-icon {
      font-size: 1.2rem;
      color: #6EC1E4;
      margin-right: 1rem;
      width: 40px;
      text-align: center;
  }
  
  .wscb-history-content {
      flex: 1;
  }
  
  .wscb-history-name {
      font-weight: 600;
      color: #011E42;
      margin-bottom: 0.25rem;
  }
  
  .wscb-history-details {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      font-size: 0.9rem;
      color: #666;
  }
  
  .wscb-history-expiry {
      font-size: 0.85rem;
      color: #495057;
  }
  
  .wscb-expired-badge {
      background: #dc3545;
      color: white;
      padding: 0.2rem 0.5rem;
      border-radius: 12px;
      font-size: 0.7rem;
      font-weight: bold;
      margin-left: 0.5rem;
      text-transform: uppercase;
  }
  
  .wscb-history-status {
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
  }
  
  .wscb-status-completed {
      background: #d4edda;
      color: #155724;
  }
  
  .wscb-status-processing {
      background: #fff3cd;
      color: #856404;
  }
  
  /* Quick Actions */
  .wscb-quick-actions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
  }
  
  .wscb-quick-action {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: white;
      border: 2px solid #e1e5e9;
      border-radius: 8px;
      padding: 1rem;
      text-decoration: none;
      color: #011E42;
      font-weight: 600;
      transition: all 0.3s ease;
  }
  
  .wscb-quick-action:hover {
      border-color: #6EC1E4;
      background: #f8f9fa;
      transform: translateY(-1px);
      text-decoration: none;
      color: #011E42;
  }
  
  .wscb-quick-action i {
      font-size: 1.2rem;
      color: #6EC1E4;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .wscb-stats-grid {
          grid-template-columns: 1fr;
      }
      
      .wscb-package-details {
          grid-template-columns: 1fr !important;
      }
      
      .wscb-quick-actions {
          grid-template-columns: 1fr;
      }
      
      .wscb-history-item {
          flex-direction: column;
          text-align: center;
          gap: 0.5rem;
      }
      
      .wscb-history-icon {
          margin-right: 0;
      }
      
      .wscb-package-header {
          flex-direction: column;
          gap: 0.5rem;
          text-align: center;
      }
  }
  
  /* Profile Section Styles */
  .wscb-profile-section {
      background: white;
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 2rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border: 1px solid #e1e5e9;
  }
  
  /* Officiant Page Styles */
  .wscb-officiant-page {
      background: #f8f9fa;
      min-height: 100vh;
  }
  
  .wscb-officiant-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
  }
  
  .wscb-officiant-header {
      background: linear-gradient(135deg, #6EC1E4 0%, #011E42 100%);
      color: white;
      padding: 3rem 0;
      margin-bottom: 2rem;
  }
  
  .wscb-officiant-hero {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
  }
  
  .wscb-officiant-avatar {
      width: 120px;
      height: 120px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: white;
      border: 4px solid rgba(255,255,255,0.3);
  }
  
  .wscb-officiant-info {
      flex: 1;
      min-width: 300px;
  }
  
  .wscb-officiant-name {
      font-size: 2.5rem;
      font-weight: 700;
      margin: 0 0 0.5rem 0;
      line-height: 1.2;
  }
  
  .wscb-officiant-business {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      opacity: 0.9;
  }
  
  .wscb-officiant-title {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      opacity: 0.8;
  }
  
  .wscb-officiant-experience {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
      opacity: 0.9;
  }
  
  .wscb-officiant-experience i {
      color: #ffd700;
  }
  
  .wscb-officiant-badge {
      background: rgba(255,255,255,0.2);
      border-radius: 12px;
      padding: 1rem;
      text-align: center;
      min-width: 150px;
  }
  
  .wscb-badge-text {
      display: block;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
  }
  
  .wscb-badge-subtitle {
      display: block;
      font-size: 0.9rem;
      opacity: 0.8;
  }
  
  /* Contact Information */
  .wscb-officiant-contact {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      background: white;
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 2rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border: 1px solid #e1e5e9;
  }
  
  .wscb-contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.1rem;
      font-weight: 600;
  }
  
  .wscb-contact-item i {
      color: #6EC1E4;
      font-size: 1.2rem;
  }
  
  .wscb-contact-item a {
      color: #011E42;
      text-decoration: none;
      transition: color 0.3s ease;
  }
  
  .wscb-contact-item a:hover {
      color: #6EC1E4;
  }
  
  /* Content Sections */
  .wscb-officiant-content {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border: 1px solid #e1e5e9;
  }
  
  .wscb-officiant-section {
      margin-bottom: 2rem;
  }
  
  .wscb-officiant-section:last-child {
      margin-bottom: 0;
  }
  
  .wscb-officiant-bio,
  .wscb-officiant-services {
      line-height: 1.6;
      color: #333;
      font-size: 1.1rem;
  }
  
  /* Package Information */
  .wscb-package-info {
      background: #f8f9fa;
      border-radius: 12px;
      padding: 1.5rem;
      border: 1px solid #e1e5e9;
  }
  
  .wscb-package-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
  }
  
  .wscb-package-item i {
      color: #ffd700;
      font-size: 1.5rem;
  }
  
  .wscb-package-name {
      font-weight: 700;
      color: #011E42;
      font-size: 1.2rem;
  }
  
  .wscb-package-duration {
      color: #666;
      font-size: 0.9rem;
  }
  
  .wscb-package-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 0.75rem;
      margin-top: 1rem;
  }
  
  .wscb-feature-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
  }
  
  .wscb-feature-item i {
      color: #28a745;
      font-size: 0.9rem;
  }
  
  /* Call to Action */
  .wscb-cta-box {
      background: linear-gradient(135deg, #6EC1E4 0%, #011E42 100%);
      color: white;
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
  }
  
  .wscb-cta-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
  }
  
  .wscb-cta-text {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      opacity: 0.9;
      line-height: 1.6;
  }
  
  .wscb-cta-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
  }
  
  .wscb-btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  .wscb-btn-secondary:hover {
      background: white;
      color: #011E42;
      text-decoration: none;
  }
  
  /* Responsive Design for Officiant Page */
  @media (max-width: 768px) {
      .wscb-officiant-hero {
          flex-direction: column;
          text-align: center;
          gap: 1rem;
      }
      
      .wscb-officiant-name {
          font-size: 2rem;
      }
      
      .wscb-officiant-contact {
          flex-direction: column;
          gap: 1rem;
      }
      
      .wscb-cta-buttons {
          flex-direction: column;
      }
      
      .wscb-package-features {
          grid-template-columns: 1fr;
      }
  }
  
  /* Profile Form Enhancements */
  .wscb-profile-form textarea {
    width: 100%;
    resize: vertical;
    min-height: 80px;
}
  
  .wscb-profile-form input[type="url"] {
      font-family: monospace;
  }
  
  /* Profile Section Spacing */
  .wscb-profile-section + .wscb-profile-section {
      margin-top: 1rem;
  }
  
  /* Form Styles */
  .wscb-form-narrow {
      max-width: 600px;
  }
  
  .wscb-form-wide {
      max-width: 800px;
  }
  
  .wscb-form-group {
      margin-bottom: 1.5rem;
  }
  
  .wscb-form-row {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
  }
  
  .wscb-form-col {
      flex: 1;
  }
  
  .wscb-form-label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #011E42;
  }
  
  .wscb-form-help {
      color: #666;
      font-size: 0.9rem;
      margin-top: 0.25rem;
  }
  
  .wscb-form-actions {
      margin-top: 2rem;
  }
  
  .wscb-input {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
      box-sizing: border-box;
  }
  
  .wscb-input:focus {
      outline: none;
      border-color: #6EC1E4;
      box-shadow: 0 0 0 3px rgba(110, 193, 228, 0.1);
  }
  
  .wscb-input-readonly {
      background-color: #f5f5f5;
      color: #666;
      cursor: not-allowed;
  }
  
  .wscb-input-url {
      font-family: monospace;
  }
  
  .wscb-textarea {
      resize: vertical;
      min-height: 80px;
  }
  
  .wscb-url-input-group {
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  .wscb-url-prefix {
      color: #666;
      font-size: 0.9rem;
      white-space: nowrap;
  }
  
  .wscb-url-input {
      flex: 1;
  }
  
  /* Copy Link Styles */
  .wscb-copy-link-section {
      background: #f8f9fa;
      padding: 2rem 0;
      border-bottom: 1px solid #e1e5e9;
  }
  
  .wscb-copy-link-box {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border: 1px solid #e1e5e9;
  }
  
  .wscb-copy-link-content {
      text-align: center;
  }
  
  .wscb-copy-link-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #011E42;
      margin-bottom: 0.5rem;
  }
  
  .wscb-copy-link-text {
      color: #666;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
  }
  
  .wscb-copy-link-input-group {
      display: flex;
      gap: 0.5rem;
      max-width: 600px;
      margin: 0 auto;
  }
  
  .wscb-copy-link-input {
      flex: 1;
      padding: 0.75rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 0.9rem;
      background: #f8f9fa;
      color: #666;
      font-family: monospace;
  }
  
  .wscb-copy-btn {
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  .wscb-copy-success {
      margin-top: 1rem;
      color: #28a745;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
  }
  
  /* Responsive Design for Forms */
  @media (max-width: 768px) {
      .wscb-form-row {
          flex-direction: column;
          gap: 0;
      }
      
      .wscb-copy-link-input-group {
          flex-direction: column;
      }
      
      .wscb-copy-btn {
          justify-content: center;
      }
  }
  
  /* Error and Success Messages */
  .wscb-error {
      background: #f8d7da;
      color: #721c24;
      padding: 1rem;
      border-radius: 8px;
      border: 1px solid #f5c6cb;
      margin-bottom: 1rem;
      font-weight: 600;
  }
  
  /* Profile Image Styles */
  .wscb-profile-image-section {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-bottom: 1rem;
  }
  
  .wscb-current-image {
      flex-shrink: 0;
  }
  
  .wscb-profile-preview {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #6EC1E4;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .wscb-profile-placeholder {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: #ccc;
      border: 3px solid #ddd;
  }
  
  .wscb-image-upload {
      flex: 1;
  }
  
  .wscb-file-input {
      width: 100%;
      padding: 0.75rem;
      border: 2px dashed #ddd;
      border-radius: 8px;
      background: #f8f9fa;
      cursor: pointer;
      transition: border-color 0.3s ease;
  }
  
  .wscb-file-input:hover {
      border-color: #6EC1E4;
      background: #f0f8ff;
  }
  
  .wscb-file-input:focus {
      outline: none;
      border-color: #6EC1E4;
      box-shadow: 0 0 0 3px rgba(110, 193, 228, 0.1);
  }
  
  /* Sidebar Profile Image */
  .wscb-sidebar-header {
      padding: 1.5rem 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 1rem;
  }
  
  .wscb-sidebar-profile {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
  }
  
  .wscb-sidebar-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(255,255,255,0.3);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .wscb-sidebar-user-info {
      flex: 1;
      min-width: 0;
  }
  
  .wscb-sidebar-user-name {
      font-weight: 700;
      color: #000000;
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  
  .wscb-sidebar-user-role {
      color: rgb(0 0 0);
      font-size: 0.9rem;
  }
  
  /* Officiant Page Profile Image */
  .wscb-officiant-profile-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid rgba(255,255,255,0.3);
  }
  
  /* Responsive Design for Profile Images */
  @media (max-width: 768px) {
      .wscb-profile-image-section {
          flex-direction: column;
          text-align: center;
          gap: 1rem;
      }
      
      .wscb-sidebar-profile {
          flex-direction: column;
          text-align: center;
          gap: 0.75rem;
      }
      
      .wscb-sidebar-avatar {
          width: 70px;
          height: 70px;
      }
  }
  
  /* WordPress Admin Styles */
  .wscb-admin-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
  }
  
  .wscb-stat-card {
      background: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .wscb-stat-card h3 {
      margin: 0 0 0.5rem 0;
      color: #666;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  
  .wscb-stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #6EC1E4;
  }
  
  .wscb-admin-recent {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
  }
  
  .wscb-recent-section {
      background: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .wscb-recent-section h2 {
      margin: 0 0 1rem 0;
      color: #333;
      font-size: 1.2rem;
  }
  
  /* Responsive Admin Design */
  @media (max-width: 1200px) {
      .wscb-admin-recent {
          grid-template-columns: 1fr;
      }
  }
  
  @media (max-width: 768px) {
      .wscb-admin-stats {
          grid-template-columns: 1fr;
      }
  }
  
  /* Admin Section Cards */
  .wscb-admin-section {
      margin-top: 2rem;
  }
  
  .wscb-admin-section h2 {
      color: #333;
      margin-bottom: 1rem;
  }
  
  .wscb-admin-card {
      background: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .wscb-admin-card h3 {
      margin: 0 0 0.5rem 0;
      color: #6EC1E4;
      font-size: 1.1rem;
  }
  
  .wscb-admin-card p {
      margin: 0 0 1rem 0;
      color: #666;
  }
  
  .wscb-admin-card .button {
      margin-top: 0.5rem;
      margin-right: 10px;
  }
  
  /* User Action Buttons */
  .wp-list-table .button {
      margin-bottom: 0.5rem;
      display: inline-block;
      text-decoration: none;
      font-size: 0.9rem;
      padding: 0.4rem 0.8rem;
  }
  
  .wp-list-table .button:last-child {
      margin-bottom: 0;
  }
  
  /* Filter Header Enhancements */
  .wscb-filter-header .button {
      margin-right: 10px;
      margin-bottom: 10px;
  }
  
  .wscb-filter-header .description {
      margin-bottom: 15px;
      font-size: 1.1rem;
      color: #011E42;
  }
  
  .wscb-filter-header .description strong {
      color: #6EC1E4;
  }
  
  /* Custom Post Type Admin Styling */
  .post-type-wscb_couple .wp-list-table,
  .post-type-wscb_script .wp-list-table {
      margin-top: 1rem;
  }
  
  .post-type-wscb_couple .wp-list-table th,
  .post-type-wscb_script .wp-list-table th {
      font-weight: 600;
      color: #23282d;
  }
  
  .post-type-wscb_couple .wp-list-table td,
  .post-type-wscb_script .wp-list-table td {
      vertical-align: top;
      padding: 12px 10px;
  }
  
  /* Meta Box Styling */
  #wscb_couple_details .form-table th {
      width: 150px;
      padding: 15px 10px 15px 0;
  }
  
  #wscb_couple_details .form-table td {
      padding: 15px 10px;
  }
  
  #wscb_couple_details input[type="text"],
  #wscb_couple_details input[type="date"],
  #wscb_couple_details input[type="time"],
  #wscb_couple_details textarea {
      width: 100%;
      max-width: 400px;
  }
  
  #wscb_script_details p {
      margin: 0 0 15px 0;
      padding: 0;
  }
  
  #wscb_script_details strong {
      color: #23282d;
      display: block;
      margin-bottom: 5px;
  }
  
  #wscb_script_details small {
      color: #666;
  }
  
  /* Filter Dropdowns */
  .post-type-wscb_couple .tablenav,
  .post-type-wscb_script .tablenav {
      margin: 1rem 0;
  }
  
  .post-type-wscb_couple select,
  .post-type-wscb_script select {
      margin-right: 10px;
      min-width: 150px;
  }
  
  /* Column Styling */
  .column-bride_groom,
  .column-wedding_date,
  .column-location,
  .column-officiant,
  .column-associated_couple,
  .column-word_count {
      width: 15%;
  }
  
  .column-title {
      width: 25%;
  }
  
  /* Word count styling */
  .column-word_count {
      text-align: center;
      font-weight: 500;
  }
  
  /* Officiant info styling */
  .column-officiant small {
      color: #666;
      font-style: italic;
  }
  
  /* Associated couple link styling */
  .column-associated_couple a {
      color: #6EC1E4;
      text-decoration: none;
  }
  
  .column-associated_couple a:hover {
      text-decoration: underline;
  }
  
  /* Filter Header Styling */
  .wscb-filter-header {
      background: #f8f9fa;
      border: 1px solid #e1e5e9;
      border-radius: 8px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
  }
  
  .wscb-filter-header h1 {
      margin: 0 0 0.5rem 0;
      color: #011E42;
  }
  
  .wscb-filter-header .description {
      margin: 0 0 1rem 0;
      color: #666;
      font-size: 1rem;
  }
  
  .wscb-filter-header .button {
      background: #6EC1E4;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
  }
  
  .wscb-filter-header .button:hover {
      background: #011E42;
      text-decoration: none;
      color: white;
  }
  
  /* User Management Search and Pagination */
  .wscb-user-search {
      margin-bottom: 1rem;
  }
  
  .wscb-user-search .search-box {
      float: left;
      margin: 0;
  }
  
  .wscb-user-search .search-box input[type="search"] {
      width: 200px;
      margin-right: 0.5rem;
  }
  
  .wscb-user-search .tablenav-pages {
      float: right;
      margin: 0;
  }
  
  .wscb-user-search .displaying-num {
      font-weight: 600;
      color: #666;
  }
  
  /* Pagination Styling */
  .tablenav-pages .page-numbers {
      display: inline-block;
      padding: 0.25rem 0.5rem;
      margin: 0 0.125rem;
      text-decoration: none;
      border: 1px solid #ddd;
      background: #f9f9f9;
      color: #555;
      border-radius: 3px;
      font-size: 0.875rem;
  }
  
  .tablenav-pages .page-numbers:hover {
      background: #f1f1f1;
      border-color: #999;
      color: #333;
  }
  
  .tablenav-pages .page-numbers.current {
      background: #0073aa;
      border-color: #0073aa;
      color: white;
  }
  
  .tablenav-pages .page-numbers.dots {
      border: none;
      background: none;
      padding: 0.25rem 0.25rem;
  }
  
  .tablenav-pages .prev-page,
  .tablenav-pages .next-page {
      font-weight: bold;
      font-size: 1.1rem;
  }
  
  /* Purchase History Specific Styles */
  .wscb-discount {
      color: #46b450;
      font-weight: bold;
  }
  
  .wscb-no-discount {
      color: #8c8f94;
  }
  
  .wscb-status-completed {
      color: #46b450;
      font-weight: bold;
      text-transform: capitalize;
  }
  
  .wscb-status-processing {
      color: #ff6b35;
      font-weight: bold;
      text-transform: capitalize;
  }
  
  .wscb-status-cancelled {
      color: #d63638;
      font-weight: bold;
      text-transform: capitalize;
  }
  
  .wscb-status-refunded {
      color: #8c8f94;
      font-weight: bold;
      text-transform: capitalize;
  }
  
  .wscb-repeat-yes {
      color: #007cba;
      font-weight: bold;
  }
  
  .wscb-repeat-no {
      color: #8c8f94;
  }
  
  /* Filter Form Styling */
  .tablenav .wscb-input {
      margin-right: 10px;
      min-width: 150px;
  }
  
  .tablenav .wscb-input[type="search"] {
      width: 200px;
  }
  
  /* Purchase History Table Enhancements */
  .wp-list-table td {
      vertical-align: top;
  }
  
  .wp-list-table th {
      font-weight: 600;
  }
  
  /* Export Section */
  .wscb-admin-card {
      margin-top: 30px;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      border: 1px solid #ddd;
  }
  
  .wscb-admin-card h3 {
      margin: 0 0 0.5rem 0;
      color: #6EC1E4;
      font-size: 1.1rem;
  }
  
  .wscb-admin-card p {
      margin: 0 0 1rem 0;
      color: #666;
  }
  
  .wscb-admin-card .button {
      margin-top: 0.5rem;
      margin-right: 10px;
  }
  
  /* Chatbot Admin Page Styles */
  .wscb-admin-content {
      margin-top: 20px;
  }
  
  .wscb-admin-card {
      background: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .wscb-admin-card h2 {
      margin-top: 0;
      color: #011E42;
      border-bottom: 2px solid #6EC1E4;
      padding-bottom: 10px;
  }
  
  .wscb-admin-card h3 {
      color: #6EC1E4;
      margin-top: 30px;
      margin-bottom: 15px;
  }
  
  .nav-tab-wrapper {
      margin-bottom: 20px;
  }
  
  .nav-tab {
      background: #f1f1f1;
      border: 1px solid #ddd;
      color: #666;
      text-decoration: none;
      padding: 8px 16px;
      margin-right: 5px;
      border-radius: 4px 4px 0 0;
  }
  
  .nav-tab:hover {
      background: #e1e1e1;
      color: #333;
  }
  
  .nav-tab-active {
      background: #6EC1E4;
      color: white;
      border-color: #6EC1E4;
  }
  
  .form-table th {
      width: 200px;
      padding: 15px 10px 15px 0;
  }
  
  .form-table td {
      padding: 15px 10px;
  }
  
  .form-table input[type="text"],
  .form-table input[type="number"],
  .form-table input[type="password"],
  .form-table textarea {
      width: 100%;
      max-width: 400px;
  }
  
  .form-table textarea {
      font-family: monospace;
      font-size: 12px;
  }
  
  /* Question Management Styles */
  #wscb-questions-container {
      margin-bottom: 20px;
  }
  
  .wscb-question-item {
      background: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 15px;
      margin-bottom: 10px;
  }
  
  .wscb-question-row {
      display: flex;
      gap: 15px;
      align-items: flex-end;
  }
  
  .wscb-question-field {
      flex: 1;
  }
  
  .wscb-question-field label {
      display: block;
      font-weight: 600;
      margin-bottom: 5px;
      color: #333;
  }
  
  .wscb-question-field input,
  .wscb-question-field select {
      width: 100%;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
  }
  
  .wscb-question-field input:focus,
  .wscb-question-field select:focus {
      border-color: #6EC1E4;
      outline: none;
      box-shadow: 0 0 0 1px #6EC1E4;
  }
  
  .wscb-question-actions {
      display: flex;
      gap: 10px;
      align-items: center;
  }
  
  .wscb-remove-question {
      background: #dc3545 !important;
      border-color: #dc3545 !important;
      color: white !important;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 18px;
      font-weight: bold;
      padding: 0 !important;
      line-height: 1;
  }
  
  .wscb-remove-question:hover {
      background: #c82333 !important;
      border-color: #c82333 !important;
  }
  
  #wscb-add-question {
      margin-bottom: 20px;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: bold;
  }
  
  .wscb-question-item.highlight {
      background: #fff3cd;
      border-color: #ffeaa7;
      animation: highlight 0.5s ease-in-out;
  }
  
  @keyframes highlight {
      0% { transform: scale(1); }
      50% { transform: scale(1.02); }
      100% { transform: scale(1); }
  }
  
  /* Product Select Dropdown Styles */
  .wscb-product-select {
      width: 100%;
      max-width: 400px;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      background-color: #fff;
  }
  
  .wscb-product-select:focus {
      border-color: #6EC1E4;
      outline: none;
      box-shadow: 0 0 0 1px #6EC1E4;
  }
  
  .wscb-product-select option {
      padding: 8px;
  }
  
  /* Highlight selected products */
  .wscb-product-select option:checked {
      background-color: #6EC1E4;
      color: white;
  }
  
  /* Essential Question Styles */
  .essential-question {
      background: #fff3cd !important;
      border-color: #ffeaa7 !important;
      position: relative;
  }
  
  .essential-question::before {
      content: "★ Essential";
      position: absolute;
      top: -8px;
      left: 10px;
      background: #dc3545;
      color: white;
      padding: 2px 8px;
      font-size: 10px;
      font-weight: bold;
      border-radius: 3px;
      z-index: 1;
  }
  
  .essential-question .question-name {
      background-color: #f8f9fa;
      color: #6c757d;
  }
  
  .essential-question .question-name:read-only {
      cursor: not-allowed;
  }
  
  /* Reset Button Styles */
  .wscb-reset-section {
      margin-bottom: 30px;
      margin-top: 20px;
      padding: 15px;
      background: #fff3cd;
      border: 1px solid #ffc107;
      border-radius: 4px;
  }
  
  .wscb-reset-section h3 {
      margin-top: 0;
      color: #856404;
  }
  
  .wscb-reset-section p {
      margin-bottom: 15px;
      color: #856404;
  }
  
  .button-warning {
      background-color: #dc3545 !important;
      border-color: #dc3545 !important;
      color: white !important;
  }
  
  .button-warning:hover {
      background-color: #c82333 !important;
      border-color: #bd2130 !important;
      color: white !important;
  }
  
  /* User Purchase History Styles */
  .wscb-user-purchase-history {
      padding: 20px 0;
  }
  
  .wscb-purchase-history-header {
      text-align: center;
      margin-bottom: 40px;
  }
  
  .wscb-purchase-history-header h2 {
      color: #333;
      margin-bottom: 10px;
      font-size: 2.5em;
  }
  
  .wscb-purchase-history-header p {
      color: #666;
      font-size: 1.1em;
  }
  
  .wscb-no-purchases {
      text-align: center;
      padding: 60px 20px;
      background: #f8f9fa;
      border-radius: 8px;
      margin: 40px 0;
  }
  
  .wscb-no-purchases-icon {
      font-size: 4em;
      margin-bottom: 20px;
  }
  
  .wscb-no-purchases h3 {
      color: #333;
      margin-bottom: 10px;
      font-size: 1.8em;
  }
  
  .wscb-no-purchases p {
      color: #666;
      margin-bottom: 30px;
      font-size: 1.1em;
  }
  
  .wscb-purchase-history-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  .wscb-purchase-item {
      background: white;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      transition: box-shadow 0.3s ease;
  }
  
  .wscb-purchase-item:hover {
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  
  .wscb-purchase-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #f0f0f0;
  }
  
  .wscb-purchase-info h3 {
      color: #333;
      margin: 0 0 8px 0;
      font-size: 1.4em;
  }
  
  .wscb-purchase-meta {
      display: flex;
      gap: 15px;
      font-size: 0.9em;
      color: #666;
  }
  
  .wscb-order-id {
      font-weight: bold;
      color: #007cba;
  }
  
  .wscb-order-date {
      color: #888;
  }
  
  .wscb-purchase-status {
      text-align: right;
  }
  
  .wscb-status {
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.85em;
      font-weight: bold;
      text-transform: uppercase;
  }
  
  .wscb-status-completed {
      background: #d4edda;
      color: #155724;
  }
  
  .wscb-status-processing {
      background: #fff3cd;
      color: #856404;
  }
  
  .wscb-status-cancelled {
      background: #f8d7da;
      color: #721c24;
  }
  
  .wscb-status-refunded {
      background: #e2e3e5;
      color: #383d41;
  }
  
  .wscb-purchase-details {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }
  
  .wscb-purchase-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid #f8f9fa;
  }
  
  .wscb-purchase-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
  }
  
  .wscb-purchase-col {
      flex: 1;
  }
  
  .wscb-purchase-col strong {
      color: #333;
      margin-right: 8px;
  }
  
  .wscb-repeat-yes {
      color: #28a745;
      font-weight: bold;
  }
  
  .wscb-repeat-no {
      color: #6c757d;
  }
  
  .wscb-discount {
      color: #dc3545;
      font-weight: bold;
  }
  
  .wscb-no-discount {
    color: #6c757d;
  }
  
  /* Active Package Info Styles */
  .wscb-active-package-info {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff;
    border: 2px solid #28a745;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(40, 167, 69, 0.10);
    padding: 2.5rem;
  }
  
  .wscb-active-package-info h2 {
    color: #011E42;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .wscb-package-status {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .wscb-package-status p {
    margin: 0.5rem 0;
    color: #011E42;
    font-size: 1.1rem;
  }
  
  .wscb-package-status p strong {
    color: #6EC1E4;
    font-weight: 600;
  }
  
  .wscb-active-package-info > p {
    text-align: center;
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .wscb-active-package-info {
      margin: 1rem;
      padding: 1.5rem;
    }
    
    .wscb-active-package-info h2 {
      font-size: 1.5rem;
    }
    
    .wscb-package-status {
      padding: 1rem;
    }
    
    .wscb-package-status p {
      font-size: 1rem;
    }
  }
  
  .wscb-total-amount {
      color: #007cba;
      font-weight: bold;
      font-size: 1.1em;
  }
  
  .wscb-purchase-summary {
      margin-top: 40px;
      padding: 25px;
      background: #f8f9fa;
      border-radius: 8px;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
  }
  
  .wscb-summary-item {
      text-align: center;
      flex: 1;
      min-width: 150px;
  }
  
  .wscb-summary-item strong {
      display: block;
      color: #333;
      margin-bottom: 5px;
      font-size: 0.9em;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  
  .wscb-summary-item:not(strong) {
      color: #007cba;
      font-size: 1.5em;
      font-weight: bold;
  }
  
  @media (max-width: 768px) {
      .wscb-purchase-header {
          flex-direction: column;
          gap: 15px;
      }
      
      .wscb-purchase-status {
          text-align: left;
      }
      
      .wscb-purchase-row {
          flex-direction: column;
          align-items: flex-start;
          gap: 8px;
      }
      
      .wscb-purchase-summary {
          flex-direction: column;
          text-align: center;
      }
      
      .wscb-summary-item {
          min-width: auto;
      }
  }
  
  /* Package Renewal Styles */
  .wscb-renewal-card {
      background: #fff3cd;
      border: 1px solid #ffeaa7;
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 20px;
  }
  
  .wscb-renewal-header {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
  }
  
  .wscb-renewal-icon {
      font-size: 2em;
      margin-right: 15px;
      margin-top: 5px;
  }
  
  .wscb-renewal-content h4 {
      color: #856404;
      margin: 0 0 8px 0;
      font-size: 1.3em;
  }
  
  .wscb-renewal-content p {
      color: #856404;
      margin: 0;
      font-size: 1.1em;
  }
  
  .wscb-renewal-details {
      margin-top: 1rem;
      padding: 1rem;
      background: rgba(255, 193, 7, 0.1);
      border-radius: 8px;
      border-left: 3px solid #ffc107;
  }
  
  .wscb-renewal-details p {
      margin: 0.3rem 0;
      font-size: 0.9rem;
      color: #856404;
  }
  
  .wscb-renewal-details p strong {
      color: #495057;
  }
  
  .wscb-renewal-actions {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
  }
  
  .wscb-renewal-btn {
      background-color: #dc3545 !important;
      border-color: #dc3545 !important;
      color: white !important;
      font-weight: bold;
      padding: 12px 24px;
      font-size: 1.1em;
  }
  
  .wscb-renewal-btn:hover {
      background-color: #c82333 !important;
      border-color: #bd2130 !important;
      color: white !important;
  }
  
  .wscb-package-expired {
      background-color: #dc3545 !important;
      color: white !important;
  }
  
  .wscb-expired {
      color: #dc3545 !important;
      font-weight: bold;
  }
  
  .wscb-usage-exceeded {
      background-color: #dc3545 !important;
  }
  
  @media (max-width: 768px) {
      .wscb-renewal-actions {
          flex-direction: column;
      }
      
      .wscb-renewal-header {
          flex-direction: column;
          text-align: center;
      }
      
      .wscb-renewal-icon {
          margin-right: 0;
          margin-bottom: 10px;
      }
  }
  
  /* Error Message Styles */
  .wscb-error-message {
      background: #f8d7da;
      border: 1px solid #f5c6cb;
      border-radius: 8px;
      padding: 25px;
      margin: 20px 0;
      text-align: center;
  }
  
  .wscb-error-message h3 {
      color: #721c24;
      margin: 0 0 15px 0;
      font-size: 1.4em;
  }
  
  .wscb-error-message p {
      color: #721c24;
      margin: 0 0 15px 0;
      font-size: 1.1em;
      line-height: 1.5;
  }
  
  .wscb-error-message .wscb-btn-primary {
      background-color: #dc3545 !important;
      border-color: #dc3545 !important;
      color: white !important;
      font-weight: bold;
      padding: 12px 24px;
      font-size: 1.1em;
      text-decoration: none;
      display: inline-block;
      border-radius: 5px;
      transition: all 0.3s ease;
  }
  
  .wscb-error-message .wscb-btn-primary:hover {
      background-color: #c82333 !important;
      border-color: #bd2130 !important;
      color: white !important;
      text-decoration: none;
  }
  
  /* Package Info Display Styles */
  .wscb-package-info {
      background: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
  }
  
  .wscb-package-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
  }
  
  .wscb-package-name {
      font-size: 1.3em;
      font-weight: bold;
      color: #011E42;
  }
  
  .wscb-package-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
  }
  
  .wscb-package-detail {
      display: flex;
      justify-content: space-around;
      /* gap: 12px; */
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid #e9ecef;
  }
  
  .wscb-detail-label {
      font-weight: 600;
      color: #6c757d;
  }
  
  .wscb-detail-value {
      font-weight: 500;
      color: #011E42;
  }
  
  .wscb-no-package {
      background: #fff3cd;
      border: 1px solid #ffeaa7;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
      text-align: center;
  }
  
  .wscb-no-package p {
      margin: 0;
      color: #856404;
      font-size: 1.1em;
  }
  
  .wscb-no-package .wscb-btn-primary {
      margin-top: 10px;
      display: inline-block;
  }
  
  /* Officiant Access Denied Styles */
  .wscb-officiant-access-denied {
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8f9fa;
      padding: 40px 20px;
  }
  
  .wscb-access-denied-content {
      background: white;
      border: 1px solid #e9ecef;
      border-radius: 12px;
      padding: 40px;
      max-width: 600px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .wscb-access-denied-content h2 {
      color: #dc3545;
      margin: 0 0 20px 0;
      font-size: 1.8em;
      font-weight: bold;
  }
  
  .wscb-access-denied-content p {
      color: #6c757d;
      margin: 0 0 15px 0;
      font-size: 1.1em;
      line-height: 1.6;
  }
  
  .wscb-access-denied-content p:last-child {
      margin-bottom: 0;
      color: #495057;
      font-weight: 500;
  }
  
  @media (max-width: 768px) {
      .wscb-officiant-access-denied {
          padding: 20px 15px;
      }
      
      .wscb-access-denied-content {
          padding: 30px 20px;
      }
      
      .wscb-access-denied-content h2 {
          font-size: 1.5em;
      }
  }
  
  /* Professional Package Warning Styles */
  .wscb-professional-warning {
      background: #fff3cd;
      border-bottom: 1px solid #ffeaa7;
      padding: 20px 0;
  }
  
  .wscb-warning-box {
      background: white;
      border: 1px solid #ffeaa7;
      border-radius: 8px;
      padding: 25px;
      margin: 0 auto;
      max-width: 800px;
  }
  
  .wscb-warning-content {
      display: flex;
      align-items: flex-start;
      gap: 20px;
  }
  
  .wscb-warning-icon {
      font-size: 2em;
      margin-top: 5px;
  }
  
  .wscb-warning-text h3 {
      color: #856404;
      margin: 0 0 15px 0;
      font-size: 1.4em;
  }
  
  .wscb-warning-text p {
      color: #856404;
      margin: 0 0 15px 0;
      font-size: 1.1em;
      line-height: 1.5;
  }
  
  .wscb-warning-text p:last-of-type {
      margin-bottom: 20px;
  }
  
  .wscb-warning-text .wscb-btn-primary {
      background-color: #dc3545 !important;
      border-color: #dc3545 !important;
      color: white !important;
      font-weight: bold;
      padding: 12px 24px;
      font-size: 1.1em;
  }
  
  .wscb-warning-text .wscb-btn-primary:hover {
      background-color: #c82333 !important;
      border-color: #bd2130 !important;
      color: white !important;
  }
  
  @media (max-width: 768px) {
      .wscb-warning-content {
          flex-direction: column;
          text-align: center;
      }
      
      .wscb-warning-icon {
          margin-top: 0;
          margin-bottom: 10px;
      }
  }
  
  /* Sidebar Renewal Indicator Styles */
  .wscb-sidebar-renewal {
      position: relative;
      color: #dc3545 !important;
      font-weight: bold;
  }
  
  .wscb-sidebar-renewal:hover {
      color: #011E42 !important;
  }
  
  .wscb-renewal-indicator {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.9em;
      animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
      0% {
          opacity: 1;
      }
      50% {
          opacity: 0.5;
      }
      100% {
          opacity: 1;
      }
  }
  
  /* Enhanced Subscription Page Styles */
  .wscb-subscription-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .wscb-subscription-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .wscb-subscription-header h2 {
    color: #011E42;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .wscb-subscription-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .wscb-packages-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .wscb-package-enhanced {
    background: #fff;
    border: 2px solid #e1e8ed;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  
  .wscb-package-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #6EC1E4;
  }
  
  .wscb-popular {
    border-color: #6EC1E4;
    border-width: 3px;
    transform: scale(1.02);
  }
  
  .wscb-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6EC1E4, #011E42);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(110,193,228,0.3);
  }
  
  .wscb-popular-badge i {
    margin-right: 0.5rem;
  }
  
  .wscb-package-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .wscb-package-header h3 {
    color: #011E42;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .wscb-package-duration {
    color: #6EC1E4;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .wscb-package-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
  }
  
  .wscb-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #011E42;
    margin-bottom: 0.5rem;
  }
  
  .wscb-price-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
  }
  
  .wscb-package-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .wscb-package-features {
    margin-bottom: 2rem;
  }
  
  .wscb-package-features h4 {
    color: #011E42;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .wscb-package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .wscb-package-features li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1rem;
  }
  
  .wscb-package-features li:last-child {
    border-bottom: none;
  }
  
  .wscb-package-features li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  
  .wscb-package-limits {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .wscb-limit-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
  }
  
  .wscb-limit-item:last-child {
    border-bottom: none;
  }
  
  .wscb-limit-item i {
    color: #6EC1E4;
    font-size: 1.2rem;
    margin-right: 0.75rem;
  }
  
  .wscb-limit-label {
    color: #666;
    font-size: 0.95rem;
    flex: 1;
  }
  
  .wscb-limit-value {
    color: #011E42;
    font-weight: 600;
    font-size: 1rem;
  }
  
  .wscb-package-action {
    text-align: center;
  }
  
  .wscb-btn-subscribe {
    display: inline-flex;
    align-items: center;
    background: #6EC1E4;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110,193,228,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .wscb-btn-subscribe:hover {
    background: #011E42;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1,30,66,0.3);
  }
  
  .wscb-btn-popular {
    background: linear-gradient(135deg, #6EC1E4, #011E42);
    box-shadow: 0 4px 15px rgba(110,193,228,0.4);
  }
  
  .wscb-btn-subscribe i {
    margin-right: 0.5rem;
  }
  
  .wscb-subscription-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
  }
  
  .wscb-guarantee,
  .wscb-support {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .wscb-guarantee i,
  .wscb-support i {
    color: #6EC1E4;
    font-size: 2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }
  
  .wscb-guarantee h4,
  .wscb-support h4 {
    color: #011E42;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .wscb-guarantee p,
  .wscb-support p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .wscb-subscription-header h2 {
      font-size: 2rem;
    }
    
    .wscb-packages-enhanced {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .wscb-package-enhanced {
      padding: 2rem;
    }
    
    .wscb-price-amount {
      font-size: 2rem;
    }
    
    .wscb-subscription-footer {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .wscb-guarantee,
    .wscb-support {
      flex-direction: column;
      text-align: center;
    }
    
    .wscb-guarantee i,
    .wscb-support i {
      margin: 0 0 1rem 0;
    }
  }
  
  @media (max-width: 480px) {
    .wscb-subscription-container {
      padding: 1rem 0.5rem;
    }
    
    .wscb-package-enhanced {
      padding: 1.5rem;
    }
    
    .wscb-package-header h3 {
      font-size: 1.5rem;
    }
    
    .wscb-price-amount {
      font-size: 1.8rem;
    }
  }
  
  /* Action Button Styles */
  .wscb-btn-edit {
    background: #6EC1E4 !important;
  }
  
  .wscb-btn-edit:hover {
    background: #5bb1d4 !important;
  }
  
  .wscb-btn-delete {
    background: #d8000c !important;
  }
  
  .wscb-btn-delete:hover {
    background: #b8000a !important;
  }
  
  .wscb-inline-form {
    display: inline-block;
  }
  
  /* Container Styles */
  .wscb-add-button-container {
    margin-bottom: 1.5rem;
  }
  
  .wscb-load-more-container {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  /* Discount Styles */
  .wscb-discount-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }
  
  .wscb-discount-notice i {
    margin-right: 0.5rem;
    color: #ffd700;
  }
  
  .wscb-discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4757;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
    z-index: 10;
  }
  
  .wscb-discount-badge i {
    margin-right: 0.3rem;
  }
  
  .wscb-price-discounted {
    color: #ff4757 !important;
    font-weight: bold;
    font-size: 1.2em;
  }
  
  .wscb-price-savings {
    color: #2ed573;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
  }
  
  /* Purchase History Price Styles */
  .wscb-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
  }
  
  .wscb-final-price {
    color: #2ed573;
    font-weight: bold;
    font-size: 1.1em;
  }
  
  .wscb-amount-saved {
    color: #ff4757;
    font-weight: bold;
  }
  
  .wscb-discount {
    color: #ff4757;
    font-weight: bold;
  }
  
  .wscb-no-discount {
    color: #999;
    font-style: italic;
  }
  
  /* Discount Info Styles for Order Display */
  .wscb-discount-info {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #28a745;
  }
  
  .wscb-discount-info small {
    color: #6c757d;
    font-size: 0.85rem;
  }
  
  .wscb-discount-info small strong {
    color: #28a745;
  }
  
  /* Chatbot Security Messages */
  .wscb-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #f5c6cb;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
  }
  
  .wscb-error-message h3 {
    color: #721c24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .wscb-error-message p {
    color: #721c24;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .wscb-error-message .wscb-btn-primary {
    background: #721c24;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(114, 28, 36, 0.2);
  }
  
  .wscb-error-message .wscb-btn-primary:hover {
    background: #5a1a1f;
    color: #fff;
    text-decoration: none;
  }
  
  /* Chatbot Header Improvements */
  .chat-script-info {
    background: rgba(110, 193, 228, 0.1);
    border: 1px solid rgba(110, 193, 228, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #011E42;
  }
  
  .chat-script-info strong {
    color: #6EC1E4;
    font-weight: 600;
  }
  
  /* Chatbot Container Security */
  .chat-container {
    position: relative;
  }
  
  .chat-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6EC1E4, #011E42);
    border-radius: 4px 4px 0 0;
  }
  
  /* Security Badge */
  .wscb-security-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #28a745;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
  }
  
  .wscb-security-badge i {
    margin-right: 0.25rem;
  }
  
  /* Session Expiry Warning */
  .wscb-session-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .wscb-session-warning i {
    color: #f39c12;
    font-size: 1.1rem;
  }
  
  /* Responsive Design for Security Messages */
  @media (max-width: 768px) {
    .wscb-error-message {
      margin: 1rem;
      padding: 1.5rem;
    }
    
    .wscb-error-message h3 {
      font-size: 1.3rem;
    }
    
    .wscb-error-message p {
      font-size: 1rem;
    }
    
    .chat-script-info {
      font-size: 0.8rem;
      padding: 0.75rem;
    }
    
    .wscb-security-badge {
      top: 0.5rem;
      right: 0.5rem;
      font-size: 0.7rem;
      padding: 0.2rem 0.5rem;
    }
  }
  
  .wscb-sidebar-renewal:hover {
    background: #011E42;
  }
  
  .wscb-renewal-indicator {
    margin-left: 8px;
    animation: pulse 2s infinite;
    display: inline-block;
  }
  
  @keyframes pulse {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Sidebar section divider */
  .wscb-sidebar-section {
    margin-top: 1rem;
    border-top: 1px solid rgb(110 193 228);
    padding-top: 1rem;
  }
  
  /* Sidebar icon spacing */
  .wscb-icon {
    margin-right: 10px;
  }
  
  /* Mobile sidebar improvements */
  @media (max-width: 900px) {
    .wscb-sidebar-header {
      padding: 1rem;
      border-bottom: 1px solid #e3eaf3;
      margin-bottom: 1rem;
    }
    
    .wscb-sidebar-profile {
      flex-direction: column;
      text-align: center;
    }
    
    .wscb-sidebar-avatar {
      margin-bottom: 0.5rem;
    }
    
    .wscb-sidebar-user-info {
      text-align: center;
    }
    
    .wscb-sidebar-user-name {
      font-size: 1.1rem;
    }
    
    .wscb-sidebar-user-role {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 768px) {
    .wscb-sidebar {
      padding: 1rem;
    }
    
    .wscb-sidebar-link {
      padding: 0.75rem 1rem;
      font-size: 1rem;
    }
    
    .wscb-sidebar-section {
      margin-top: 1rem;
      padding-top: 1rem;
    }
  }
  .mce-container-body button
{
    background-color: unset !important;
}
.mce-menubtn.mce-fixed-width span {
   color: #636363;
}
.html-active .switch-html, .tmce-active .switch-tmce {
    background: #f6f7f7;
    color: #50575e !important;
    border: 1px solid;
}