
.competition-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.competition-header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.competition-content {
    display: flex;
    flex-direction: column;
}

.competition-data-pane {
    display: flex;
    flex-direction: row;
}

.competition-players-games-pane {
    width: 300px;
    height: calc(100vh - 250px);
}

.competition-right-pane {
    display: flex;
    flex-direction: column;
}

.competition-watch-pane {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.competition-watch-game-bar {
    margin-left: 13.5%;
    margin-right: 13.5%;
}

.play-pause-button {
    width: 27px;
    height: 27px;
}

.list {
    
}

.scrollable-list {
    height: 100%;
    overflow: scroll;
}

.list-mid-dash {
    margin-left: 5px;
    margin-right: 5px;
}

.list-row {
    display: flex;
    flex-direction: row;
    /* font-size: var(--font-small); */
    justify-content: space-between;
    background-color: #333;
    padding-top: 3px;
    padding-bottom: 3px;
    border-bottom: 1px solid #555;
}

.list-row-aligned-left {
    justify-content: flex-start !important;
}

.list-row-odd {
    background-color: #444444 !important;
}

.list-row-clickable:hover {
    background-color: #555 !important;
}

.list-row-active {
    background-color: #6e0e0e !important;
}




.list-field-group {
    display: flex;
    flex-direction: row;
    column-gap: 7px;
}

.list-image {
    height: var(--font-small);
    width: var(--font-small);
}

/* generic */


.svg-stroke-whitish path {
    stroke: #bababa;
    stroke-width: 200;
}

.competition-button:disabled {
    background-color: gray;
}

.button-primary {
    background: green;
}

.button-inactive {
    background-color: rgb(161, 161, 42);
}

.prizes-section {
    background-color: #444;
}

.prize-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.prize-names-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.prize-name {
    font-size: var(--font-normal);
    /* padding: 5px 7px 4px 7px; */
    border-radius: 4px;

    background-color: #555;
    width: 140px;
    height: var(--font-larger);
    /* overflow-x: hidden; */
    text-align: center;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  /* border-bottom: 1px dotted white;  // If you want dots under the hoverable text */
}


.wins-label {
    padding-top: 15px;
    font-size: var(--font-normal);
}

.cup-big {
    height: 360px;
    width: 292px;
    animation: float 8s ease-in-out infinite;
}

.cup-medium {
    height: 300px;
    width: 243px;
    animation: float 10s ease-in-out infinite;
}

.cup-small {
    height: 210px;
    width: 170px;
    animation: float 12s ease-in-out infinite;
}

.general-purpose-table {
    background-color: #444;
    padding: 20px;
    border-radius: 20px;
}

.general-purpose-table table {
    border-spacing: 0;
}

.general-purpose-table tbody:before {
    content:"@";
    display:block;
    line-height:5px;
    text-indent:-99999px;
}

.general-purpose-table table thead {
    background-color: #494444;
}

.general-purpose-table table tbody tr {
    border-bottom: 3px solid #222;
    border-collapse: unset;
}

.general-purpose-table table tbody tr:nth-child(odd) {
    background-color: #555;
}

.general-purpose-table table tbody tr:hover {
    background-color: #333;
}

.top-player-cell {
    width: 250px;
    padding-left: 20px;
}

.top-number-cell {
    width: 80px;
    text-align: right;
}


@keyframes float {
	0% {
		/* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
		transform: translatey(0px);
	}
	50% {
		/* box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2); */
		transform: translatey(-20px);
	}
	100% {
		/* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
		transform: translatey(0px);
	}
}



/* create competition dialog */
.choose-game-button {
    width: 22px;
    height: 22px;
    /* color: white; */
    padding: 2px;
}

.select-line-with-image {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    justify-content: flex-start;
    align-items: center;

    /* color: #bababa; */
}

.close-create-competition-btn {
    width: 20px;
    height: 20px;
    color: #bababa;
    position: absolute;
    top: 20px;
    right: 20px;
}