.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: 990px) {
    .check-in-qr-panel {
        position: relative;
        margin-bottom: 2rem;
    }
    .check-in-athlete-list {
        max-height: none;
    }
}

.sport-card-link, .skill-card-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)  {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,.18);
}

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

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

.skill-card-base {
    z-index: 2;
}

.sport-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%;
}

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

.skill-strong, .sport-strong {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.15rem; 
    letter-spacing: 0.04em; 
    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;
}

.skill-card-gradient {
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.7) 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%; 
}

.share {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}