﻿.bodyMain {
    color: #000 !important;
}

.bodyMainSupervisor {
    display: flex;
    color: #000 !important;
}


.logoMonitor {
    position: absolute;
    top: 20px;
    left: 43%;
}

.bannerHomeMonitor {
    background-color: white;
    min-height: 88vh;
}

.containerMonitor {
    display: flex;
    flex: 1;
    gap: 20px;
    padding: 30px;
    min-height: 800px;
}

.columnMonitor {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.boxMonitor {
    width: 100%;
    height: 100%;
    padding: 0 20px 20px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 17px;
}

.boxMonitorLPlus {
    height: 48%;
    padding: 0;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.cashier-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 70px;
    justify-content: left;
    margin-left: 20px;
}

.cashier-box {
    position: relative;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px 22px 15px;
    text-align: center;
    width: 200px;
    height: 200px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.monitorBox-Content{
    margin-top: 30px;
}

.gray-boxMonitor {
    background-color: #cbc7c7;
}

.red-boxMonitor {
    background-color: red;
}

.green-boxMonitor {
    background-color: #2c9c4d;
}

.yellow-boxMonitor {
    background-color: #A7D4F2;
}

.orange-boxMonitor {
    background-color: #0782a3;
}

.gray-titleMonitor {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.columnMonitor.left {
    display: flex;
    flex-wrap: wrap;
}

.columnMonitor.right {
    gap: 10px;
}

.bookedBets-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 20px;
}

.bookedBets-table th {
    text-align: left;
    padding: 10px 15px;
    font-weight: bold;
    color: gray;
    border-bottom: 1px solid #ddd;
}

.bookedBets-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.bookedBets-buttons {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.time-left {
    background-color: #2c9c4d;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.bet-btn {
    background-color: #194f29;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100px;
}

.bet-btn:hover {
    background-color: #2c9c4d;
}

.bet-btn-disabled {
    background-color: #cbc7c7;
    cursor: default;
    pointer-events: none;
}

.progressMonitor-container {
    width: 100px;
    background-color: #ddd;
    border-radius: 15px;
    overflow: hidden;
    height: 20px;
    position: relative;
}

.progressMonitor-bar {
    height: 100%;
    text-align: center;
    line-height: 20px;
    color: white;
    font-weight: bold;
    transition: width 0.5s ease-in-out;
}

.progressMonitor-red {
    background-color: red;
}

.progressMonitor-green {
    background-color: #2c9c4d;
}

.search-box {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 20px;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 1);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }
}

.live-row {
    position: relative;
    border: 2px solid red;
    animation: pulse-border 1.5s infinite alternate;
}

.live-badge {
    position: absolute;
    top: -10px;
    left: 5px;
    background-color: red;
    color: white;
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-border-yellow {
    0% {
        box-shadow: 0 0 5px rgba(167, 212, 242, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(167, 212, 242, 1);
    }

    100% {
        box-shadow: 0 0 5px rgba(167, 212, 242, 0.5);
    }
}

.prepaid-row {
    position: relative;
    border: 2px solid #A7D4F2;
    animation: pulse-border-yellow 1.5s infinite alternate;
}

.prepaid-badge {
    position: absolute;
    top: -10px;
    left: 5px;
    background-color: #A7D4F2;
    color: white;
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.monitorError-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.monitorError-frame {
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
}

.monitorError-content {
    padding: 10px;
}

.close-MonitorError-frame {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #194f29;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
    font-size: 26px;
}

.close-MonitorError-frame:hover {
    background-color: #2c9c4d;
}

.monitorTable-frame {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
}

.monitorError-totalStake {
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
}

.monitorRecap-totalStake {
    font-size: 26px;
    font-weight: bold;
}

.print-btn {
    background-color: #194f29;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100px;
}

.print-btn:hover {
    background-color: #2c9c4d;
}

.print-btn-disabled {
    background-color: #cbc7c7;
    cursor: default;
    pointer-events: none;
}

.legend-lines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 40px;
    margin: 15px 0;
    padding-left: 5px;
    align-items: start;
}

.legend-line {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.color-bar {
    display: inline-block;
    width: 24px;
    height: 8px;
    margin-right: 10px;
    border-radius: 4px;
    border: 1px solid #444;
    flex-shrink: 0;
}

.legend-text {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .legend-lines {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 600px) and (max-width: 1900px) {
    .legend-lines {
        grid-template-columns: 1fr 1fr;
    }
}

.leagueplus-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: linear-gradient(135deg, #FFD700, #FFA500); /* gradiente oro */
    color: #000;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 0 0 10px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.toggle-visibility {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #2c9c4d;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-weight: bold;
    font-size: 24px;
    line-height: 20px;
    cursor: pointer;
    z-index: 10;
}

.toggle-box {
    position: relative;
    transition: height 0.3s ease;
}

.box-inner {
    height: 100%;
    overflow: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.box-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0;
}

.resizer-bar {
    background: #aaa;
    height: 6px;
    width: 100%;
    cursor: ns-resize;
    z-index: 1;
}

.ghost-resizer-bar {
    position: absolute;
    height: 6px;
    background-color: #444;
    width: 100%;
    left: 0;
    z-index: 1001;
    display: none;
    pointer-events: none;
    opacity: 0.7;
    transition: top 0.05s linear;
}

.no-select,
.no-select * {
    user-select: none !important;
}

.toggle-visibility-left {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #2c9c4d;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-weight: bold;
    font-size: 24px;
    line-height: 20px;
    cursor: pointer;
    z-index: 10;
}

.columnMonitor.left.collapsed .toggle-visibility-left {
    right: 5px;
    top: 10px;
    transform: rotate(90deg);
    background-color: #2c9c4d;
    z-index: 1001;
}

.columnMonitor.left.collapsed {
    flex: 0 0 50px !important;
    min-width: 20px !important;
    padding: 0 !important;
}

.columnMonitor.right.expanded {
    margin-left: 20px;
}

.box-hidden-left {
    display: none !important;
}