body {
    margin: 0;
}

.header {
    text-align: center;
    padding: 1em;
    background: #f8f8f8;
    margin: 0 0 40px 0;
}
.header-title {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}
.header-subtitle {
    font-size: 22px;
}

.table {    
    width: 100%;
}

.borderless td,
.borderless th {
    border: none;
}

.blank {
    background-color: #fff !important;
}

.home {
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 28px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.away {
    width: 60px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.away-block {
    -ms-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
    display: flex;
    font-weight: bold;
    font-size: 28px;
    letter-spacing: 4px;
}

.money {
    line-height: 40px;
    max-width: 25px !important;
    background-color: #fff !important;
    font-weight: bold;
    font-size: 20px;
    font-style: italic;
}

.numbers {
    border: 1px solid #ccc !important;
    background-color: #eee !important;
    font-size: 20px;
    font-weight: bold;
}

.squares {
    height: 60px !important;
    border: 1px solid #ddd !important;
    font-size: 14px;
    cursor: pointer;
    padding: 0 !important;
}


.holder {
    background-color: #eee !important;
    color: #000 !important;   
}
.blockWinner {
    background-color: #08fc1c !important;
    color: #000 !important;
}
.scoreWinner {
    border: #08fc1c 2px solid !important;
}
.squareView {
    background-color: #2701ff !important;
    color: #fff !important;
    transition: all 0.2s ease-in-out;
    transform: scale(1.05);
}
.squarePush {
    background-color: #b9b9b9 !important;
    color: #000000 !important;
    transition: all 0.2s ease-in-out;
    transform: scale(1.05);
}
.ryan {
    background-color: #ae02b4 !important;
    color: #fff !important;
    transition: all 0.2s ease-in-out;
    transform: scale(1.05);
}

.link {
    color: #0000EE;
}

.link:hover {
    color: #BF40BF;
}

/* block pick style */
        .selected-square {
            background-color: #01fd16 !important;
            border: 2px solid #0a58ca;
            transition: all 0.2s ease-in-out;
            transform: scale(1.05);
        }

        /* Modal styling */
        .modal-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background-color: white;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 90%;
            width: 400px;
            position: relative;
        }