.zmeet-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .zmeet-modal {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 30px 50px;
    color: #fff;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .zmeet-modal-close {
    background: none;
    border: none;
    color: #0E00DC;
    cursor: pointer;
    font-size: 35px;
    position: absolute;
    right: 15px;
    top: 5px;
    font-weight: 600;
    &:hover{
    color: #2D8CFF;
    }
  }
  
  .zmeet-modal-content {
    padding-top: 10px;
    text-align: center;

    .zmeet-campaign{
      margin-top: 30px;
      .timer-main-wrapper{
        .ends-in{
          color: #0f9;
          font-weight: 700;
          font-size: 16px;
          margin-right: 10px;
          padding: 0;
          text-align: center;
          margin-bottom: 5px
        }
    
        .zmeet-countdown-wrapper {
          display: flex;
          justify-content: space-between;
          padding: 6px 21px;
          background: linear-gradient(90deg, #5700FA 0%, #340094 100%);
          border: 1.5px solid #E7DAFF;
          border-radius: 8px;
        }
      
        .zmeet-countdown-box {
          display: flex;
          flex-direction: column;
          align-items: center;
          margin-right: 10px;
          border-right: 1px solid #fff;; // Border between countdown boxes
          padding-right: 15px;
      
          &:last-child {
            border-right: none; // Remove border on the last box
            padding-right: 0;
          }
      
          .zmeet-countdown-number {
            font-size: 18px;
            font-weight: bold;
            color: #fff;
          }
      
          .zmeet-countdown-label {
            font-size: 12px;
            color: #fff;
            margin-top: 3px;
          }
        }
    
      }
    
      .zmeet-countdown-note {
        color: #D9FF00;
        font-size: 14px;
        padding: 0 0;
        margin-top: 5px;
      }
  
    }

    .zmeet-cta-btn {
      background-color: #D9FF00;
      border-color: #D9FF00;
      font-size: 18px;
      font-weight: 800;
      border-radius: 10px;
      padding: 5px 20px;
      margin-top: 30px;
      color: #000;
      border: none;
      cursor: pointer;
      &:hover {
        background-color: #0f9;
        border-color: #0f9;
      }
    }
    
    .ltd-title{
      color: #19ff00;
      font-size: 18px;
      font-weight: 600;
    }
  
    h2 {
      font-size: 24px;
      color: #fff;
      margin-bottom: 35px;
      text-align: left;
    }
    
    p{
      font-size: 16px;
      color: #fff;
    }
  
    ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
      margin-left: 0; /* Aligned with title */
      text-align: left;
  
      li {
        margin-bottom: 10px;
        font-size: 16px;
        position: relative;
        padding-left: 20px;
  
        &::before {
          content: '✔';
          color: #2D8CFF;
          position: absolute;
          left: 0;
          top: 0;
        }

        span{
            color: #2D8CFF;
            font-size: 13px;
            font-weight: 700;
        }
      }
    }
  
    .zmeet-modal-button {
      display: inline-block;
      text-align: center;
      width: fit-content;
      text-align: center;
      background: #2D8CFF;
      color: #fff;
      border: none;
      border-radius: 5px;
      padding: 10px 20px;
      font-size: 18px;
      cursor: pointer;
      transition: background 0.3s;
      text-align: center;
      margin-top: 30px;
  
      &:hover {
        background: #0E00DC;;
      }
    }
  }
  