.main-body
{
  font-family: 'Roboto';
  color: #000000;
  background-color: #ffffff;
}

.selector-for-some-widget {
  box-sizing: content-box;
}

.btn-custom 
      { color: black; /* White text */ 
        text-decoration: none; /* No underline */ 
      } 
      .btn-custom:hover 
      { 
        color: black; /* White text on hover */ 
        text-decoration: none; /* No underline on hover */ 
      }
      .center-links 
      { 
        display: flex; 
        justify-content: center; /* Center horizontally */ 
        gap: 10px; /* Optional: Add spacing between elements */ 
      }

      .text-align-center
{
  text-align: center;
}