body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.main-content {
    flex: 1;
}
.footer {
    border-top: 1px solid #e5e5e5;
}
.avatar-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}
.table-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.athlete-name-link {
    color: #0d6efd;
    text-decoration: underline;
    cursor: pointer;
}

.face-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.face-thumb {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 auto;
}

.face-thumb-lg {
    width: 144px;
    height: 144px;
    border-radius: 10px;
}

.face-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.face-index {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    user-select: none;
}

.face-thumb-lg .face-index {
    top: auto;
    right: auto;
    left: 6px;
    bottom: 6px;
}

.face-avatar-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    padding: 1px 6px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 12px;
    user-select: none;
}

.face-delete-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    line-height: 22px;
    text-align: center;
    background: rgba(220, 53, 69, 0.95);
    border: none;
    color: #fff;
}

.modal-70vh {
    max-height: 70vh;
}

.modal-70vh .modal-content {
    max-height: 70vh;
}

.modal-70vh .modal-body {
    overflow-y: auto;
    min-height: 0;
}
