.icon-img {
  width: 18px;
  height: 18px;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgb(104, 108, 218) 0%, rgb(61, 148, 221) 100%);
}

.award-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  cursor: pointer;
  justify-content: center;
  gap: 8px;
  color: #fff !important;
}

.popup {
    position: absolute;
    width: 280px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(117, 117, 117, 0.4);
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: all 0.2s ease;
    left: 0;
    bottom: 100%;
    text-align: left;
    z-index: 10;
    overflow: hidden;
    cursor: auto;
}

.award-container:hover .popup {
    opacity: 1;
    visibility: visible !important;
}

.popup-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.popup-award {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.popup-description {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.5;
}

.popup-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.popup-link:hover {
    text-decoration: underline;
}

.popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 12px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.popup-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, rgb(104, 108, 218), rgb(61, 148, 221));
}
