﻿:root {
    --controller-height: 110px;
    --numpad-size-low-res: 50px;
    --numpad-spacing-low-res: 5px;
    --numpad-special-button-width-low-res: 75px;
}

.three-darts-container {
    height: var(--controller-height);
}

.detection {
    max-width: var(--controller-height);
    cursor: pointer;
}

.detection-score {
    height: 75px;
    background-color:black;
    border-color: var(--active-red-color) !important;
    font-size: 50px;
    font-weight: bold;
    margin: 0px !important;
}

.detection-display-score {
    border-top-width: 0px !important;
    border-color: var(--active-red-color) !important;
    font-size: 22px;
    font-weight: bold;
    margin: 0px !important;
}

.treble-bg-color {
    background-color: #7e1818;
}

.double-bg-color {
    background-color: #367142;
}

/* MANUAL CORRECTION */
.manual-panel-content {
    background-color: var(--background-gray-color);
}

.manual-panel-container {
    height: 280px !important;
    width: 500px !important;
}

.manual-panel-special-col {
    width: calc(var(--numpad-special-button-width-low-res) + var(--numpad-spacing-low-res));
    max-width: calc(var(--numpad-special-button-width-low-res) + var(--numpad-spacing-low-res));
    height: calc(var(--numpad-size-low-res) + var(--numpad-spacing-low-res));
    max-height: calc(var(--numpad-size-low-res) + var(--numpad-spacing-low-res));
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.manual-panel-number-col {
    width: calc(var(--numpad-size-low-res) + var(--numpad-spacing-low-res));
    max-width: calc(var(--numpad-size-low-res) + var(--numpad-spacing-low-res));
    height: calc(var(--numpad-size-low-res) + var(--numpad-spacing-low-res));
    max-height: calc(var(--numpad-size-low-res) + var(--numpad-spacing-low-res));
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.numeric-button {
    background-color: var(--active-red-color);
    color: white;
    width: var(--numpad-size-low-res);
    height: var(--numpad-size-low-res);
    margin: 0px !important;
    padding: 0px !important;
    font-size: 22px;
    font-weight: bold;
}

.numeric-button:hover {
    background-color: var(--active-red-color);
    color: white;
}

.special-button {
    width: var(--numpad-special-button-width-low-res);
    height: var(--numpad-size-low-res);
    margin: 0px !important;
    padding: 0px !important;
    font-size: 14px;
    font-weight: bold;
}
/* MANUAL CORRECTION */