.shift-display {
    text-align: center;
    margin-bottom: 20px;
}

.dial {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.letter {
    font-family: 'Courier New', Courier, 'Lucida Console', Monaco, Consolas, 'DejaVu Sans Mono', monospace;
    padding: 2px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 1px;
    background-color: #e9ecef;
    letter-spacing: 5px;
}

input[type="range"] {
    width: 250px;
    margin: 10px 0;
}

.shift-button {
    font-size: 20px;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #007bff;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.shift-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.dialpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 300px !important; 
    height: 500px;  
    display: block; 
    background: black; 
    text-align: center; 
    padding: 10px 5px;
    border-radius: 12px;
    margin: 15px 0;
}

.dialpad  input[type="text"] {
    width: 250px !important;
    padding: 10px;
    resize: none; /* Prevent resizing */
    font-size: 2em;
    margin: 0;
    margin-bottom: 10px !important;
    text-align: center;
    color: #FFFFFF !important;
    background: #000000;
    border: none !important;
}

.dialpad img {
    opacity: .9;
    transition: opacity 0.3s ease;
}

.dialpad img:hover {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.dialpad img:active {
    transform: translateY(4px);
}

.pp-reset-btn {
    width: 200px !important;
}

.dial-button {
    padding: 20px;
    font-size: 24px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dial-button:hover {
    background-color: #0056b3;
}

.associated-letters {
    margin-bottom: 20px;
}



@media (max-width: 600px) {
    .letter {
        font-size: 16px; /* Smaller font size for mobile */
        padding: 8px 4px; /* Adjust padding */
	letter-spacing: 3px !important;
    }

    .shift-button {
	margin-top: 10px;
        font-size: 18px; /* Smaller button font size */
        padding: 20px 20px !important; /* Adjust button padding */
    }

}

