@charset "utf-8";
@font-face {
  font-family: "Montserrat";
  src: url("../../../../modules/lineup/skins/default/less/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NEXON Football Gothic";
  src: url("../../../../modules/lineup/skins/default/font/NEXON Football Gothic B.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.lineup-builder {
  max-width: 1200px;
  font-family: "Montserrat", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}
.lineup-builder h2 {
  font-size: 1.2em;
  line-height: 1.4;
  margin-bottom: 24px;
}
.lineup-builder button,
.lineup-builder input,
.lineup-builder select {
  font-family: inherit;
}
.lineup-container {
  display: grid;
  grid-template-columns: minmax(0,2fr) minmax(280px,1fr);
  grid-template-rows: auto auto auto;
  column-gap: 20px;
}
.pitch-area {
  display: contents;
}
.controls-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-column: 1;
  grid-row: 1;
  height: 44px;
  margin-bottom: 24px;
}
.formation-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}
.formation-selector .select-wrapper {
  position: relative;
  display: inline-block;
}
.formation-selector .select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  min-width: 160px;
  padding: 8px 16px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #FFF;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.formation-selector .select-trigger:hover {
  border-color: #d2d2d2;
}
.formation-selector .select-trigger:focus-visible {
  border-color: #d2d2d2;
  box-shadow: 0 0 0 3px rgba(68,193,255,0.25);
}
.formation-selector .dropdown-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #999999;
  transition: transform 0.3s ease;
}
.formation-selector .select-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  margin-top: 8px;
  padding: 4px;
  list-style: none;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 21;
  max-height: 320px;
  overflow-y: auto;
  background-color: #FFF;
  background-image: linear-gradient(#FFF,#FFF), linear-gradient(#FFF,#FFF), linear-gradient(#e7e7e7,#e7e7e7), linear-gradient(#e7e7e7,#e7e7e7);
  background-position: top, bottom, top, bottom;
  background-size: 100% 1px, 100% 1px, 100% 1px, 100% 1px;
  background-repeat: no-repeat;
  background-attachment: local, local, scroll, scroll;
  scrollbar-width: thin;
  scrollbar-color: #e7e7e7 transparent;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.formation-selector .select-menu::-webkit-scrollbar {
  width: 6px;
}
.formation-selector .select-menu::-webkit-scrollbar-thumb {
  background: #e7e7e7;
  border-radius: 4px;
}
.formation-selector .select-menu::-webkit-scrollbar-thumb:hover {
  background: #d2d2d2;
}
.formation-selector .select-menu::-webkit-scrollbar-track {
  background: transparent;
}
.formation-selector .select-option {
  padding: 12px 16px;
  border-radius: 6px;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.formation-selector .select-option:hover {
  background: #f7f7f7;
}
.formation-selector .select-option.selected {
  background: #effaff;
  color: #44c1ff;
  font-weight: 600;
}
.formation-selector .select-wrapper.open .dropdown-icon {
  transform: rotate(180deg);
}
.formation-selector .select-wrapper.open .select-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.control-actions {
  display: flex;
  align-items: center;
}
.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #c2c2c2;
  font-size: 14px;
  transition: color 0.2s ease;
}
.btn-reset i {
  color: #d2d2d2;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .btn-reset:hover {
    color: #999999;
  }
  .btn-reset:hover i {
    color: #adadad;
  }
}
.btn-export-preview,
.btn-export-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  font-size: 14px;
  padding: 12px 16px;
  min-width: 168px;
  min-height: 48px;
  padding: 8px 16px;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background: #effaff;
  color: #44c1ff;
}
.btn-export-preview:hover,
.btn-export-download:hover {
  background: #daf3ff;
}
.btn-export-preview:disabled,
.btn-export-download:disabled {
  background: #d2d2d2;
  cursor: not-allowed;
}
.btn-export-preview:hover,
.btn-export-download:hover {
  background: #d5f1ff;
}
.btn-export-preview:disabled,
.btn-export-download:disabled {
  background-color: #d2d2d2;
  border-color: #d2d2d2;
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-export-preview {
  padding: 8px 16px;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background: #f7f7f7;
  color: #44c1ff;
  color: #707070;
}
.btn-export-preview:hover {
  background: #efefef;
}
.btn-export-preview:disabled {
  background: #d2d2d2;
  cursor: not-allowed;
}
.btn-export-download {
  padding: 8px 16px;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background: #effaff;
  color: #44c1ff;
}
.btn-export-download:hover {
  background: #daf3ff;
}
.btn-export-download:disabled {
  background: #d2d2d2;
  cursor: not-allowed;
}
.lineup-title-section {
  grid-column: 1;
  grid-row: 3;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.title-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.title-input-group label {
  font-weight: bold;
  color: #333;
  font-size: 14px;
}
.title-input-group input {
  padding: 12px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  background: #fbfbfb;
  min-width: 320px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.title-input-group input:focus {
  border-color: #44c1ff;
  box-shadow: 0 0 0 3px rgba(68,193,255,0.25);
}
.title-input-group input::placeholder {
  color: #c2c2c2;
}
.image-export-section {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.image-capture-container {
  width: 600px !important;
  height: auto !important;
  position: fixed !important;
  top: -9999px !important;
  left: -9999px !important;
  background: #fff !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 16px;
  padding-top: 0;
  font-family: "Montserrat", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
}
.image-capture-container .capture-info-header {
  width: 100%;
  color: #000;
  padding: 16px 0 12px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.image-capture-container .capture-info-header .info-left {
  display: flex;
  align-items: center;
  gap: 2px;
  text-align: left;
}
.image-capture-container .capture-info-header .info-left .title-logo-icon {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.image-capture-container .capture-info-header .info-left .lineup-title-info {
  font-family: "NEXON Football Gothic", "Montserrat", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #003f98;
}
.image-capture-container .export-pitch {
  width: 100% !important;
}
.image-capture-container .export-pitch .player-slot {
  width: 100px !important;
}
.image-capture-container .export-pitch .player-slot .player-avatar .slot-name {
  font-size: 16px !important;
}
.image-capture-container .export-pitch .slot-indicator.plus-icon {
  font-size: 30px !important;
}
.image-capture-container .export-pitch .slot-indicator.has-player {
  font-size: 36px !important;
}
.image-capture-container .export-pitch .goal-lines {
  border: 4px solid rgba(206,239,255,0.45) !important;
}
.image-capture-container .export-pitch .goal-lines.outer-line {
  width: 50% !important;
  height: 20% !important;
}
.image-capture-container .export-pitch .goal-lines.inner-line {
  width: 20% !important;
  height: 8% !important;
}
.image-capture-container .export-pitch .watermark-logo img {
  width: 124px !important;
  right: 2% !important;
  bottom: 4% !important;
}
.player-selection-panel {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  align-self: start;
  box-sizing: border-box;
  height: auto;
  min-height: 0;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  overflow: hidden;
}
.player-selection-panel button,
.player-selection-panel input {
  font-family: inherit;
}
.position-tabs {
  display: flex;
  flex-shrink: 0;
  border-bottom: 1px solid #e7e7e7;
}
.tab-btn {
  flex: 1;
  padding: 12px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c2c2c2;
  font-weight: 600;
}
.tab-btn:hover {
  background: #fbfbfb;
}
.tab-btn.active {
  background: #effaff;
  color: #44c1ff;
  border-bottom-color: #44c1ff;
}
.player-list {
  flex: 0 0 auto;
  height: 540px;
  min-height: 0;
  padding: 12px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e7e7e7 transparent;
}
.player-list::-webkit-scrollbar {
  width: 6px;
}
.player-list::-webkit-scrollbar-thumb {
  background: #e7e7e7;
  border-radius: 4px;
}
.player-list::-webkit-scrollbar-thumb:hover {
  background: #d2d2d2;
}
.player-list::-webkit-scrollbar-track {
  background: transparent;
}
.position-players[data-position] {
  display: none;
}
.position-players[data-position]:first-child {
  display: block;
}
.player-card {
  padding: 12px;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fbfbfb;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.player-card:hover {
  background-color: #efefef;
}
.player-card.selected {
  background-color: #effaff;
  border-color: #44c1ff;
}
.player-card.custom {
  position: relative;
  padding-right: 44px;
}
.card-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  background: #0058fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffef51;
  font-weight: bold;
  font-size: 10px;
  flex-shrink: 0;
}
.player-card[data-player-position="GK"] .card-avatar {
  background: #fd009b;
}
.card-number {
  font-size: 16px;
  line-height: 1;
  transform: translateX(0.02em);
}
.card-info {
  flex: 1;
}
.card-name {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}
.custom-input-section {
  margin-bottom: 12px;
}
.input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.input-group input {
  background-color: #FFF;
  color: #333;
}
.custom-name-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.custom-name-input:focus {
  border-color: #44c1ff;
  box-shadow: 0 0 0 3px rgba(68,193,255,0.25);
}
.custom-name-input::placeholder {
  color: #c2c2c2;
}
.btn-add-custom {
  flex: 0 0 auto;
  padding: 8px 16px;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #effaff;
  color: #44c1ff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-add-custom:hover {
  background: #daf3ff;
}
.btn-add-custom:disabled {
  background: #f7f7f7;
  color: #c2c2c2;
  cursor: not-allowed;
}
.btn-remove-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  color: #999999;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.2s ease;
}
.btn-remove-custom:hover {
  transform: translateY(-50%) scale(1.1);
}
.custom-players-list {
  overflow-y: auto;
}
.custom-empty-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
  opacity: 0.7;
}
.custom-empty-state p {
  color: #999999;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  font-size: 14px;
}
@media (max-width: 767px) {
  .custom-empty-state p {
    font-size: 16px;
  }
}
.custom-players-list:empty + .custom-empty-state {
  display: flex;
}
.pitch-container {
  position: relative;
  isolation: isolate;
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  aspect-ratio: 0.8;
  background: #effaff;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  user-select: none;
  transition: background-color 0.3s ease;
}
.pitch-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.goal-lines {
  display: inline-block;
  position: absolute;
  border: 4px solid rgba(206,239,255,0.45);
  border-radius: 4px;
  transform: translate(-50%,0%);
  left: 50%;
  bottom: -1%;
  z-index: 1;
}
.goal-lines.outer-line {
  width: 50%;
  height: 20%;
}
.goal-lines.inner-line {
  width: 20%;
  height: 8%;
}
.watermark-logo img {
  width: 124px;
  position: absolute;
  right: 2%;
  bottom: 4%;
  opacity: 0.75;
}
.players-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.player-slot {
  position: absolute;
  width: 100px;
  aspect-ratio: 1;
  cursor: pointer;
  transform: translate(-50%,-50%);
  z-index: 5;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.player-slot:hover .player-avatar {
  transform: scale(1.1);
}
.player-slot.selected .player-avatar {
  filter: drop-shadow(0 0 5px #a8e7ff) drop-shadow(0 0 12px rgba(41,182,255,0.85));
  overflow: visible;
}
.player-slot .player-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  color: #ffef51;
  font-weight: bold;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.player-slot .player-avatar .uniform-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  -webkit-touch-callout: none;
}
.player-slot .player-avatar .uniform-labels {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 78%;
  transform: translate(-50%,-50%);
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  pointer-events: none;
}
.player-slot .player-avatar .slot-name {
  max-width: 100%;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.4;
  padding: 2px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 2;
}
.player-slot .player-avatar .slot-name:empty {
  display: none;
}
.player-slot .player-avatar .slot-indicator {
  z-index: 2;
}
.slot-indicator {
  font-weight: bold;
  color: #ffef51;
  line-height: 1;
}
.slot-indicator.plus-icon {
  font-size: 30px;
}
.slot-indicator.has-player {
  font-size: 36px;
  min-height: 1em;
}
.plus-icon {
  display: inline-block;
  vertical-align: middle;
}
.tab-btn .plus-icon {
  font-size: 14px;
}
.player-slot.dragging {
  opacity: 0.5;
  transform: translate(-50%,-50%) scale(1.1);
}
@media (max-width: 767px) {
  .lineup-builder h2 {
    margin-bottom: 20px;
  }
  .lineup-builder {
    padding: 0 20px;
  }
  .lineup-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .pitch-area {
    display: flex;
    flex-direction: column;
  }
  .pitch-container {
    overflow: hidden;
  }
  .pitch-lines {
    overflow: hidden;
    border-radius: inherit;
  }
  .player-slot {
    width: 68px;
  }
  .player-slot.selected .player-avatar {
    filter: none;
  }
  .player-slot.selected .player-avatar::before {
    content: "";
    position: absolute;
    inset: -12px;
    box-sizing: border-box;
    padding: 12px;
    background: url("../../../../modules/lineup/skins/default/img/uniform-base.png") center / contain no-repeat content-box;
    filter: drop-shadow(0 0 4px #a8e7ff) drop-shadow(0 0 6px rgba(41,182,255,0.85));
    pointer-events: none;
    z-index: 0;
  }
  .player-slot.selected .player-avatar.gk-uniform::before {
    background-image: url("../../../../modules/lineup/skins/default/img/uniform-goalkeeper.png");
  }
  .card-avatar {
    width: 48px;
    height: 48px;
  }
  .player-slot .player-avatar .slot-name {
    font-size: 12px;
  }
  .slot-indicator.plus-icon {
    font-size: 20px;
  }
  .slot-indicator.has-player {
    font-size: 20px;
  }
  .goal-lines {
    border: 3px solid rgba(206,239,255,0.45);
  }
  .goal-lines.outer-line {
    width: 60%;
    height: 20%;
  }
  .goal-lines.inner-line {
    width: 25%;
    height: 8%;
  }
  .watermark-logo img {
    width: 56px;
    position: absolute;
    right: 2%;
    bottom: 3%;
  }
  .controls-panel {
    margin-bottom: 16px;
  }
  .lineup-title-section {
    flex-direction: column;
  }
  .title-input-group {
    width: 100%;
  }
  .image-export-section {
    width: 100%;
    flex-direction: row;
    gap: 8px;
  }
  .title-input-group input {
    font-size: 16px;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .btn-export-preview,
  .btn-export-download {
    flex: 1;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 14px;
    text-align: center;
  }
  .formation-selector .select-wrapper {
    width: 100%;
  }
  .formation-selector .select-trigger {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }
  .btn-reset {
    min-height: 44px;
    padding: 8px 0;
    font-size: 14px;
  }
  .player-selection-panel {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 70vh;
    background: #FFF;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    z-index: 21;
    border-radius: 20px 20px 0 0;
    transition: transform 0.3s ease, max-height 0.2s ease;
    align-self: auto;
    height: auto;
    margin-top: 0;
    border-width: 0;
    border-top: 1px solid #e7e7e7;
  }
  .player-selection-panel.keyboard-hidden {
    transform: translateY(100%);
  }
  .player-selection-panel.keyboard-resized {
    max-height: 40vh;
  }
  .position-tabs {
    overflow-x: auto;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #efefef;
    -webkit-overflow-scrolling: touch;
  }
  .position-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    flex: 0 0 auto;
    padding: 4px 8px;
    background: #fbfbfb;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    min-width: 60px;
    min-height: 40px;
    font-weight: 600;
    white-space: nowrap;
    border-bottom-width: 1px;
    transition: all 0.2s ease;
  }
  .tab-btn:hover,
  .tab-btn:active {
    background: #efefef;
  }
  .tab-btn.active {
    background: #effaff;
    border-color: #44c1ff;
    color: #44c1ff;
  }
  .player-list {
    height: auto;
    padding: 0;
    overflow: hidden;
    flex: 1;
  }
  .position-players[data-position] {
    height: 100%;
    flex-direction: row;
    padding: 8px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .position-players[data-position]::-webkit-scrollbar {
    display: none;
  }
  .position-players[data-position]:first-child {
    display: flex;
  }
  .player-card {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    margin: 0;
    border-color: transparent;
    background: transparent;
    user-select: none;
  }
  .player-card:hover {
    background-color: transparent;
  }
  .player-card.selected {
    background-color: #effaff;
    border-color: #44c1ff;
  }
  .player-card.selected:hover {
    background-color: #effaff;
  }
  .player-card.custom {
    gap: 12px;
    padding-right: 8px;
  }
  .player-card.custom .card-info {
    display: block;
    flex: 0 0 auto;
    min-height: 0;
  }
  .player-card.custom .card-name {
    line-height: 1.1;
  }
  .card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 32px;
    width: 100%;
    text-align: center;
  }
  .card-name {
    line-height: 1.2;
    word-break: keep-all;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .position-players[data-position="CUSTOM"] {
    flex-direction: column;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .custom-input-section {
    order: 3;
    margin: 0;
    padding: 12px;
    border-top: 1px solid #efefef;
    background: #fbfbfb;
  }
  .input-group {
    max-width: 400px;
    margin: 0 auto;
  }
  .custom-name-input {
    border-color: #e7e7e7;
    border-radius: 6px;
    font-size: 16px;
  }
  .btn-add-custom {
    border-radius: 6px;
    font-size: 14px;
  }
  .custom-players-list {
    order: 1;
    display: flex;
    align-items: flex-start;
    flex: 0 0 auto;
    min-height: 110px;
    padding: 8px 16px;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .custom-players-list::-webkit-scrollbar {
    display: none;
  }
  .custom-empty-state {
    position: absolute;
    inset: 0 0 auto;
    height: 110px;
    padding: 0 16px;
    box-sizing: border-box;
    pointer-events: none;
  }
  .btn-remove-custom {
    top: -6px;
    right: -6px;
    transform: none;
    width: 30px;
    height: 30px;
    padding: 0;
    background: transparent;
    color: #707070;
    border: none;
    font-size: 10px;
    box-shadow: none;
  }
  .btn-remove-custom i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-remove-custom:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 320px) {
  .tab-btn {
    min-width: 60px;
    padding: 8px 12px;
    font-size: 10px;
  }
  .card-avatar {
    width: 40px;
    height: 40px;
    font-size: 8px;
  }
  .player-card {
    min-width: 68px;
  }
}

