  .awardslist {

  .us-card {
    display: grid;
    grid-template-rows: 1fr;
    align-items: center;
  }

  .us-card-body p {
    line-height: 120%;
    display: grid;
    gap: 1rem;
    grid-template-columns: min-content 1fr;
    
    font-size: 1.2rem;
    font-weight: 600;

    &:before {
      display: grid;
      align-items: center;
      content: "\f559";
      font-family: "Font Awesome 7 Pro";
    }
  }

}

.stats-sales p {
  font-weight: bold;
  font-size: clamp(1rem, 3vw, 2.3rem);
}


/* DEV - Cert Picker */

.certificatepicker {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    .certificatepicker-search {
        display: block;
        width: 100%;
        padding: 0.5rem;
        border: 1px solid rgb(200 200 200);
        border-bottom-width: 2px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .certificate-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-block-start: 1rem;

        button {
            flex: 1 0 100%;
        }
    }
}

.typeahead {
    position: relative;
    width: 100%;
}

.certificates-results-select {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    margin: 0;
    padding: 0;
    list-style: none;

    border: 1px solid #ccc;
    border-top: none;
    background: #fff;

    max-height: 250px;
    /* Maximum height */
    overflow-y: auto;
    /* Scroll when needed */
    overscroll-behavior: contain;
    scrollbar-gutter: stable;

    display: none;
    z-index: 1000;

    li {
        padding: 10px;
        cursor: pointer;
        border-bottom: 1px solid #eee;

        &:last-child {
            border-bottom: none;
        }

        &:hover {
            background: #f5f5f5;
        }

        &.active {
            background: #e8f0fe;
        }
    }

    .result-title {
        font-weight: bold;
    }

    .result-description {
        font-size: 0.9em;
        color: #666;
    }
}

.certificate-clear-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    border: none;
    border-radius: 9rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1;
    padding: 0;
    
    &:hover {
        opacity: 0.8;
    }
}




