/* .calendar *******************************/

.calendar {
  border: 1px solid #ccc;
	overflow: hidden;
	position: relative;
}

/* .scores *******************************/

.scores {
	overflow: hidden;
  padding: 30px 20px 0 20px;
	position: relative;
  background-color: #eee;

  h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .match {
    align-items: center;
    border: 1px solid #ccc;
    border-radius: var(--css-border-radius);
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    padding: 5px;

    &:hover {
      background-color: #fff3cd;
      border-color: #664d03;
      cursor: pointer;
    }

    .teams {
      width: 100%;

      .team {
        align-items: center;
        display: flex;
        gap: 10px;
        width: 100%;

        &.win {
          font-weight: 600;
        }

        img {
          height: 20px;
          width: 20px;
        }

        .title {
          width: 110px;
        }

        .points, .meta {
          text-align: right;
          width: calc(100% - 140px);
        }
      }
    }
  }
}

/* .sidebar *******************************/

.sidebar {
  position: relative;

  > div {
    border-radius: var(--css-border-radius);
    margin-bottom: 40px;
    position: relative;

    &.sticky {
      position: sticky;
      top: 170px;
    }

    > .tease {
	    background: rgba(0,0,0,0.3);
	    border-radius: var(--css-border-radius);
	    color: #fff;
	    font-weight: 500;
	    left: 0;
	    padding: 5px 10px;
	    position: absolute;
	    text-transform: uppercase;
	    top: 0;
    }

    .nav {
      align-items: center;
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-bottom: 20px;
    }
  }
}