.masked-input {
    color: transparent;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* Hides the text */
    position: relative;
}

.masked-input::before {
    content: attr(data-value);
    position: absolute;
    color: #000;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 2px; /* Match the input's padding */
    box-sizing: border-box;
}

.none-admin-button {
    color: white;
    background-color: gray;
    border: none;
    width: 50px;
    font-size: 16px;
    border-radius: 10%
}