.custom-file-button {
  /* 1. Make it behave like a box */
  display: inline-block;
  width: 60%;
  
  /* 2. The Border */
  border: 2px solid #888;      /* Width, style, and color */
  border-radius: 20px;          /* Optional: rounds the corners */
  
  /* 3. Spacing and Text */
  padding: 10px 20px;          /* Space inside the border */
  text-align: center;
  line-height: 1.2;            /* Keeps the 2 lines close together */
  cursor: pointer;             /* Changes mouse to a hand icon */
  
  /* 4. Optional: Colors */
  background-color: #f8f9fa;
  color: #333;
}

/* Optional: Add a hover effect */
.custom-file-button:hover {
  background-color: #e2e6ea;
  border-color: #007bff;
}

#mid_area label {
	// display: none;
}
