.spactplugin-container {
      width: 90%;
      max-width: 1024px;
      margin: 0 auto;
      padding: 20px 0;
    }

    .spactplugin-container h2{
      margin-bottom: 10px;
      font-size: 1.7rem;
      color: #2C406B;
      font-weight: 700;
      margin-bottom: 15px;
      margin-top: 5px;
      margin-bottom: 20px;
    }

    
    .spactplugin-container h3{
      margin-bottom: 10px;
      font-size: 1.4rem;
      color: #2C406B;
      font-weight: 700;
      margin-bottom: 15px;
      margin-bottom: 20px;
      line-height: 1em;
    }

    .plugin-logo-header{
      text-align: center;
    }
    .plugin-logo-header img{
      width: 180px;
      height: auto;
    }
    .plugin-logo-header p{
      text-align: center;
      font-weight: 700;
      font-size: 17px;
      margin: 0;
    }
    .plugin-logo-header p a{
      text-decoration: none;
      color: #000000;
    }
  .spactplugin-inline-btn-wrap{
    text-align: center;
  }
    .spactplugin-container p, .spactplugin-container li {
      font-size: 16px;
      color: #2C406B;
    }

    .spactplugin-container li {
      margin-bottom: 15px;
      line-height: 1.4em
    }   

    /* ----- Tab Navigation ----- */
    .spactplugin-tabs {
      display: flex;
      border-bottom: 2px solid #ccc;
      margin-bottom: 20px;
      gap: 5px;
    }

    .spactplugin-tabs button {
      background: #eee;
      border: none;
      padding: 15px 20px;
      cursor: pointer;
      font-weight: 800;
      font-size: 20px;
      transition: background 0.3s;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }

    .spactplugin-tabs button:not(:last-child) {
      border-right: 1px solid #ccc;
    }

    .spactplugin-tabs button.spactplugin-active,
    .spactplugin-tabs button:hover {
      background: #0056b3;
      color: #ffffff;
    }

    /* ----- Tab Content Sections ----- */
    .spactplugin-tab-content {
      display: none; /* Hide by default */
    }
    .spactplugin-tab-content.spactplugin-active {
      display: block; /* Show active tab */
    }

    .spactplugin-tab-content .tab-section-intro{
      width: 780px;
      margin: 50px auto 20px auto;
      text-align: center;
    }
    

    /* ----- Welcome Tab Styles ----- */
    .spactplugin-banner {
      height: 300px;
      width: 100%;
      background: url("https://sitepact.com/wp-content/uploads/2025/01/Anywhere-Notice-Banner-1024.jpg") center/cover no-repeat;
      margin-bottom: 20px;
      border-radius: 4px;
    }

    .spactplugin-icon-boxes {
      display: grid;
      /* Force exactly 2 columns */
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .spactplugin-icon-box {
      background: #fff;
      padding: 20px;
      border-radius: 6px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .spactplugin-icon-box .dashicons {
      font-size: 32px;
      margin-right: 20px;
      color: #007bff;
    }

    .spactplugin-icon-box h3 {
      margin-bottom: 10px;
      font-size: 1.4rem;
      color: #2C406B;
      font-weight: 700;
      margin-bottom: 15px;
      margin-top: 5px;
      margin-bottom: 20px;
      line-height: 1em;
    }

    .spactplugin-icon-box p {
      font-size: 16px;
      color: #2C406B;
    }

    /* ----- Row Layout (Anywhere Notice & Pro) ----- */
    .spactplugin-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px 0;
    }

    .spactplugin-row img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
    }

    /* 2 columns with image ~ 2/3, text ~ 1/3 */
    .spactplugin-image-col {
      flex: 2;
      padding: 0 15px;
    }

    .spactplugin-text-col {
      align-self: flex-start;
      flex: 1;
      padding: 0 15px;
    }

    .spactplugin-text-col h3 {
      margin-bottom: 10px;
      line-height: 1.2em;
    }

    /* Alternate background color for each row */
    .spactplugin-row:nth-child(odd) {
      background-color: #f2f2f2;
      border-radius: 4px;
    }

    .spactplugin-inline-btn-wrap{

    }

    #spactplugin-pro .spactplugin-inline-btn-wrap > a:nth-child(1){
      margin-right: 5px;
    }

    .spactplugin-cta-btn {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      text-decoration: none;
      padding: 12px 22px;
      border-radius: 4px;
      margin-top: 10px;
      transition: background 0.3s;
      font-size: 15px;
    }

    .spactplugin-cta-btn:hover, .spactplugin-cta-btn:active, .spactplugin-cta-btn:focus  {
      background-color: #0056b3;
      color: #ffffff;
    }

    /* ----- Responsive (for smaller screens) ----- */
    @media (max-width: 768px) {
      .spactplugin-icon-boxes {
        grid-template-columns: 1fr;
      }

      .spactplugin-row {
        flex-direction: column;
      }

      /* Reverse columns on odd rows when stacked */
      .spactplugin-row:nth-child(odd) {
        flex-direction: column-reverse;
      }

      .spactplugin-image-col,
      .spactplugin-text-col {
        flex: 1;
        padding: 10px 0;
      }
    }