.mp-number-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.mp-header {
    width: 100%;
}

.mp-number {
    margin-top: 50px;
    font-size: 50px;
}

.mp-controls {
    margin-top: 50px;
    width: 100%;
}

.mp-decrease-button,
.mp-increase-button,
.mp-save-button {
    margin: 0 5px;
    background: transparent;
    border: 1px solid black;
    border-radius: 4px;
    padding: 5px 20px;
    transition: background-color 0.3s ease;
}

.mp-decrease-button,
.mp-increase-button, {
  font-weight: bold;
}

.mp-decrease-button:hover,
.mp-increase-button:hover,
.mp-save-button:hover {
    background-color: #ddd;
}

.mp-save-button[disabled] {
    border-color: #ccc;
    cursor: not-allowed;
}


