.check-in-container {
    min-height: calc(100vh - 150px);
}

.check-in-athlete-list {
    overflow-y: auto;
}

.check-in-qr-panel {
    position: sticky;
    top: 1rem;
}

.check-in-icon {
    color: #28a745;
    font-weight: bold;
}

.check-in-athlete-row {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.check-in-athlete-row:last-child {
    border-bottom: none;
}

.check-in-qr-code-img {
    width: 100%;
    height: auto;
}

.check-in-domain-url {
    font-family: monospace;
    font-size: 1.1rem;
}

.check-in-date-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-in-date-picker-wrapper input[type="date"] {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.check-in-today-badge {
    background-color: #28a745;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

@media (max-width: 1000px) {
    .check-in-qr-panel {
        position: relative;
        margin-bottom: 2rem;
    }
    .check-in-athlete-list {
        max-height: none;
    }
    .responsive-fs-6 {
        font-size: 1rem !important;
    }
}

@media (min-width:750px) and (max-width: 1000px) {
    .responsive-fs-6 {
        font-size: 0.9rem !important;
        height: 100% !important;
    } 
}

.sport-card-link, .skill-card-link, .coach-profile-link {
    display: block;
    border-radius: .75rem;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}

.sport-card-link:has(a:hover), .skill-card-link:has(a:hover),  .coach-profile-link:has(a:hover)  {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,.18);
}

.card-base{
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 1rem;
}

.sport-card-base {
    position: absolute; 
    inset: 0;
}

.card-slant {
    position: absolute; 
    inset: 0; 
    clip-path: polygon(55% 0, 100% 0, 100% 100%, 35% 100%); 
}

.sport-card-img {
    position: absolute; 
    inset: 0; 
    width: 100%;
}

.secondary-header {
    font-size: 1.15rem; 
    letter-spacing: 0.04em; 
    font-weight: bold;
}

.tertiary-header {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .1em; 
    font-size: .85rem;
}

.card-strong  {
    color: white;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.skill-subtle, .sport-subtle {
    color: white;
    opacity: 0.75; 
    font-size: 0.8rem;
}

.skill-level-tag-light {
    align-self: flex-start; 
    background: rgba(255,255,255,.2); 
    color: #FFFFFF; 
    font-size: 0.7rem;
}

.skill-level-tag {
    align-self: flex-start; 
    background: rgba(148, 148, 148, 0.785); 
    color: #000000; 
    font-size: 0.7rem;
}

.card-gradient {
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.skill-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.media-content {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.media-content-frame {
    display: block;
    width: 100%;  
    height: 100%; 
}

.waiver-content {
  max-height: 300px;
  overflow-y: scroll;
}

.section-chevron {
    transition: transform 0.2s ease;
}

[aria-expanded="true"] .section-chevron {
    transform: rotate(-180deg);
}

.session-list-link {
    margin: -0.5rem -0.5rem -0.5rem -1rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    cursor: pointer;
}

.session-list-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

@keyframes moveProgressBar {
  0% {
    transform: translateX(-20%);
    transform-origin: left;
  }
  100% {
    transform: translateX(0);
    transform-origin: left;
  }
}

.progress-bar { 
  animation: 1s linear 0s 1 moveProgressBar !important;
}