/* src/ui/keypad.css */
#keypad-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#keypad {
    background: #333;
    border: 2px solid #666;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
}

#keypad-display {
    background: #222;
    border: 1px solid #555;
    border-radius: 5px;
    color: #eee;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    height: 40px;
    margin-bottom: 15px;
    text-align: right;
    padding: 5px;
}

#keypad-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.keypad-button, #keypad-enter-button {
    background: #444;
    border: 1px solid #777;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 20px;
    padding: 15px;
    transition: background-color 0.2s;
}

.keypad-button:hover, #keypad-enter-button:hover {
    background: #555;
}

#keypad-enter-button {
    background: #2a5d2a;
}

/* src/ui/keypad/keypad.css */

#keypad-close-button {
    background: #5d2a2a;
    border: 1px solid #888;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    margin-top: 15px;
    width: 100%;
    transition: background-color 0.2s;
}

#keypad-close-button:hover {
    background: #7a3a3a;
}

/* Keypad Result Overlay */
