.custom-css-target .button-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  /* Adds space between buttons */
  flex-wrap: nowrap;
  /* Prevents wrapping */
  margin: 10px 0; }

.custom-css-target .button {
  background-color: #ffffff;
  color: #30608f;
  padding: 10px 20px;
  /* Adjusted padding for better spacing */
  border: solid 2px #30608f;
  /* Added border color */
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.5s ease, transform 0.6s ease;
  flex: 0 1 auto;
  /* Prevents buttons from growing too large */
  white-space: nowrap;
  /* Prevents text from wrapping */
  text-align: center;
  /* Centers the text within the button */
  max-width: 350px;
  /* Ensures buttons don't get too wide */ }

.custom-css-target .button:hover {
  color: #aeb884;
  transform: scale(1.05); }

@media (max-width: 768px) {
  .custom-css-target .button-container {
    flex-direction: column;
    align-items: center; }
  .custom-css-target .button {
    margin-bottom: 10px;
    width: auto;
    /* Allows buttons to take full width on smaller screens */
    white-space: normal;
    /* Allows text to wrap on smaller screens */ } }

.custom-css-target #custom-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  color: #30608f;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  border-top: solid 2px #30608f; }

.custom-css-target #custom-footer a {
  color: #30608f;
  text-decoration: none;
  margin-left: 5px; }

.custom-css-target #custom-footer a:hover {
  color: #aeb884;
  text-decoration: underline; }
