.qr-card{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    border: 0.5px solid #0000003D;
    padding: 8px;
    border-radius: 4px;
    position: relative;
    cursor: pointer;

    .qr-card-content{
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .actions-container{
        position: absolute;
        right: 12px;
        top: 10px;
    }

    .actions{
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 7px;
        transition: all 0.3s ease;

        &:hover{
          background-color: #f5f5f5;
          border-radius: 4px;
        }
    }

    .actions-wrapper{
        position: absolute;
        top: calc(100% + 4px);
        right: -8px;
        background-color: #FFFFFF;
        padding: 12px 8px;
        box-shadow: 2px 8px 24px 0px #00000029;
        gap: 6px;
        display: flex;
        flex-direction: column;
        border-radius: 4px;
        z-index: 10;
        min-width: 100px;

        &.actions-wrapper-up {
            top: auto;
            bottom: calc(100% + 4px);
        }

        .action-item{
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background-color 0.2s ease;

            &:hover{
                background-color: #f5f5f5;
            }
        }
    }
}

// V2 Styles for API-driven functionality
.qr-section-v2-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;

  .qr-code-wrapper-sticky {
    flex-shrink: 0;
  }
}

.qr-codes-list-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  margin-top: 16px;
}

.qr-codes-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  
  .loading-state, .empty-state {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
  }
  
  .loading-more {
    padding: 10px;
    text-align: center;
  }
}

.qr-input-wrapper{
    label{
      font-weight: 600;
      line-height: 19px;
    }
    &:not(:first-child){
      margin-top: 15px;
    }
  }

  .qr-input-wrapper-v2{
    display: flex;
    flex-direction: column;
    gap: 8px;

    label{
      font-weight: 500;
      line-height: 19px;
    }
  }
  .qr-submit-btn{
    width: 100%;
    padding: 10px;
    background-color: #5e5e5e;
    box-shadow: inset 0 0 0 1px #11141833,0 1px 2px #1114181a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
    &:focus{
      outline: none;
    }
    &:hover{
      background-color: #383838;
    }
  }

