﻿
.tpHeader {
    color: #d7bc7b;
    font-size: 12px;
    font-weight: bolder;
    text-align: center;
    margin-bottom: 10px;
}

.tpHand {
    min-width: 100px;
    min-height: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.tpCards {
    min-width: 263px;
    min-height: 125px;
    padding-top: 25px;
    padding-bottom: 5px;
    padding-left: 50px;
    padding-right: 50px;
    border: solid #3a563a 2px;
    border-radius: 20px;
}
    .tpCards img {
        height: 86px;
    }
.tpAnimatedCard {
    height: 86px;
    animation-duration: 1s;
    animation-name: flip;
}
@keyframes flip {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.tpFirstCard3Cards {
    transform: rotate(-5deg);
}
.tpCardMidddle3Cards {
    transform: rotate(0deg);
    margin-left: -30px;
    margin-bottom: 5px;
}
.tpLastCard3Cards {
    transform: rotate(5deg);
    margin-left: -30px;
}

.tpTable {
    background-color: #0a190a;
    width: 100%;
    padding: 10px;
}

.tpPlayersGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    column-gap: 20px;
    justify-items: center;
    margin-top: 10px;
    width: 90%;
    margin: 0 auto;
}

.tpSelectionsTableHeader {
    width: 70px;
    background-color: #254465;
    color: white;
    text-align: center;
}

.tpSelectionsName {
    font-weight: bold;
    height: 40px;
}

.tpSelectionsNameWinner {
    font-weight: bold;
    height: 40px;
    background-color: #b7f776;
}

.tpPnlProfit {
    font-weight: bold;
    text-align: center;
    color: green;
}

.tpPnlLoss {
    font-weight: bold;
    text-align: center;
    color: red;
}

.tpSelectionStatus {
    background-color: #ececed;
    color: #fa2400;
    text-align: center;
}

.tpSelectionBack {
    background-color: #e9f6fc;
    text-align: center;
}

.tpSelectionLay {
    background-color: #fce3e4;
    text-align: center;
}

.tpSelectionLabel {
    font-weight: bold;
    font-size: 14px;
}

.tpSelectionSmallLabel {
    font-size: 10px;
}

.tpRulesBack {
    background-color: #0a190a;
    color: white;
    width: 100%;
    min-height: 200px;
    padding: 20px;
}

.tpHistoryBack {
    background: linear-gradient(#000000, #ffffff);
    padding: 10px;
}

.tpHistoryHeader {
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.tpHistoryLabel {
    color: white;
    text-align: center;
}

.tpTopHandBack {
    text-align: center;
    margin: 0 auto;
    background-color: #3a3a3a;
    width: 300px;
    padding-bottom: 10px;
    border-radius: 20px;
}

.tpHistorySelectionBackWinner {
    background-color: #008000;
    padding: 20px,20px,0,20px;
    border-radius: 20px;
    text-align: center;
    min-width: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.tpHistorySelectionBackLoser {
    background-color: #353535;
    padding: 20px,20px,0,20px;
    border-radius: 20px;
    text-align: center;
    min-width: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.tpHistorySelectionStatusWinner {
    color: black;
    background-color: #cf8d2e;
    width: 140px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
}

.tpHistorySelectionStatusLoser {
    color: black;
    background-color: #cf3f3f;
    width: 140px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
}
.tpTabActive {
    background-color: black;
    color: white;
    line-height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    cursor: pointer;
}
.tpTabInactive {
    background-color: #00b181;
    color: white;
    line-height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    cursor: pointer;
}
