.answer-list{
    background-color: gray;
    border-radius: 6px;
    padding:.5rem
}
.answer-item{
    font-size: 1em;
    background-color: white;
    padding: .5rem;
    border-radius: 6px;
    text-align: center;
}
.answer-item:not(:last-child) {
    margin-bottom:.5rem
}
.answer-item.correct {
    background-color:rgb(186,228,179);color:rgb(0,109,44);
}
.red{
    background-color:red;
}
.guess-list{
    border-width: 1px;
    border-style: solid;
    border-color: #dbdbdb;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    height: 300px;
    overflow-y: scroll;
    border-bottom-width: 0px;
}
.guess-item{
    padding: .3rem;
}
.guess-item.clue{
    background-color: rgb(201, 213, 245);color: rgb(1, 68, 246);
}
.guess-item.correct{
    background-color:rgb(186,228,179);color:rgb(0,109,44);
}
.guess-item.incorrect{
    background-color:rgb(247 231 225);color:rgb(165,15,21);
}
.guess-item.gameover{
    background-color: rgb(241, 224, 135);color: rgb(91, 84, 48);
}
.guess-entry{
    border-top-left-radius: 0px;
}
.player-list{

}
.player-total{
    font-size: 1em;
    text-align: right;
}
.player-item{
    font-size: 1.25em;
    padding: .5rem;
}
.player-list-start{
    padding-top: 1em;
}
.bid-name{
    font-size: 2em;
    /*padding: 1em;*/
    vertical-align: top;
}
.bid-name.winning{
    font-weight: 600;
}
.bid-name.loosing{
    font-weight: 100;
}
.bid-name.winning::after {
    content: "🏅";
    font-weight: 100;
    font-size: 20px;
    padding-left: 5px;
}
.bid-block{
    display: inline-block;
}
.bid-block.bid-big{
    /*font-size: 2em*/
    font-weight: bold;
}
.button.is-newgame {
    background-color: #0fc10c;;
    border-color: transparent;
    color: #fff;
}
.debug{
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: white;
    z-index: 10000;
    padding: 7px;
}
.debug > * {
    margin-top: 5px;
    background-color: #c9c7c7;
}
.column.is-one-tenth {
    flex: none;
    /*width: 10%;*/
}
.vs-img{
    height: 40px;
    margin-top: 5px;
}
.notify-badge{
    position: absolute;
    right:-20px;
    top:10px;
    background:red;
    text-align: center;
    border-radius: 30px 30px 30px 30px;
    color:white;
    padding:5px 10px;
    font-size:20px;
}

.animate_count {
    animation-name: count_pulse;
    animation-duration: 1s;
}
@keyframes count_pulse {
    from {font-weight: normal; color: orangered;}
    to {font-weight: normal; color: rgb(74,74,74);}
}

.status-title{
    font-weight: bold;
    font-size: small;
}
.status-value{
    font-size: large;
}
.status-section:not(:last-child) {
    padding-bottom: 1rem;
}

#status_cluename{
    overflow: hidden;
    white-space: nowrap;
}

.tags:not(:last-child){
    margin-bottom: 0rem;
    margin-top: 1rem;
}

.tag.is-clue{
    background-color: rgb(201, 213, 245);color: rgb(1, 68, 246);
}

/* Statistics Styles */
.stats-player-card {
    margin-bottom: 1.5rem;
}

.stats-player-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.75rem;
}

.stat-box {
    background-color: #f5f5f5;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #3273dc;
}

.stat-box.cluemaster {
    border-left-color: #48c774;
}

.stat-box.observer {
    border-left-color: #ffdd57;
}

.stat-box.guesser {
    border-left-color: #3298dc;
}

.stat-box.bidding {
    border-left-color: #f14668;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #7a7a7a;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #363636;
}

.stat-subvalue {
    font-size: 0.875rem;
    color: #7a7a7a;
    margin-top: 0.25rem;
}

.win-rate-bar {
    background-color: #e8e8e8;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.win-rate-fill {
    background-color: #48c774;
    height: 100%;
    transition: width 0.3s ease;
}

.role-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.role-badge.cluemaster {
    background-color: #48c774;
    color: white;
}

.role-badge.observer {
    background-color: #ffdd57;
    color: #363636;
}

.role-badge.guesser {
    background-color: #3298dc;
    color: white;
}

.stats-empty {
    text-align: center;
    padding: 2rem;
    color: #7a7a7a;
    font-style: italic;
}

/* Bidding UI Improvements */
#btn_bid_lower {
    font-weight: 600;
}