/* Styling only for dcc.Input with class "name-input" */
input.name-input[type="text"], input.name-input[type="number"] {
    padding: 10px 14px;
    border: 2px solid #c3b797;
    border-radius: 8px;
    font-size: 16px;
    background-color: #e6d9bd !important;
    color: #ada387;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
    width: 75%;
    box-sizing: border-box;
    text-align: center;
}

input.name-input[type="text"]:focus,
input.name-input[type="number"]:focus {
    border-color: #d6c7a3;
    box-shadow: 0 0 2px #ada387;
    outline: none;
}

input.name-input::placeholder {
    color: #c3b797;
    font-style: italic;
}
