/*
 * Sports Portal - Sidebar Custom Stylesheet
 */

.sidebar-sticky-wrap {
  position: sticky;
  top: 90px;
  z-index: 10;
}

.widget-box {
  background: #ffffff;
  border: 1px solid #e0f2fe;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.04);
  margin-bottom: 24px;
  transition: all 0.25s ease;
}

.widget-box:hover {
  border-color: #bae6fd;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.08);
}

.widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  border-bottom: 2px solid #e0f2fe;
  padding-bottom: 12px;
  margin-bottom: 18px;
  position: relative;
}

.widget-title span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 45px;
  height: 2px;
  background: #0284c7;
}

.widget-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.94rem;
}

.widget-box ul li:last-child {
  border-bottom: none;
}

.widget-box ul li a {
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.2s ease;
}

.widget-box ul li a:hover {
  color: #0284c7;
  padding-left: 6px;
}