html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

@media (min-width: 320px) {
  #quoteLine {
      font-size: 1rem;
  }
}

@media (min-width: 768px) {
  #quoteLine {
      font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  #quoteLine {
      font-size: 2rem;
  }
}

/* from Giang */
.custom-shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); /* Darker shadow with 80% opacity */
}
body {
  padding-top: 56px; /* Adjust this value based on the height of your header */
}

table.table-hover td {
  border-right: 1px solid lightgray; /* Adds light gray border between columns */
}

table.table-hover th {
  border-right: 1px solid lightgray; /* Optional: Adds border to the header columns */
}

table.table-hover td:last-child, 
table.table-hover th:last-child {
  border-right: none; /* Remove border from the last column */
}

/* this keep the footer stays in the bottom 
** Since Bootswatch doesn't provide footer style, I have to come up with my own.
** This block of css code will only work within this site.css file.
*** If this is placed within the layout's header, it will only work locally but not for Docker.
*/
html, body {
    height: 100%;
    margin: 0;
}

/* Use flexbox to structure the layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Allow main content to grow to take up remaining space */
main {
    flex-grow: 1;
}

/* Footer styling to ensure it stays at the bottom */
footer {
    padding: 10px 0;
    width: 100%;
    border-top: 1px solid #ddd;
}

/* Container tweaks to ensure it fits properly */
.container-fluid {
    flex-grow: 1;
}
/* End - this keep the footer stays in the bottom */


.back-button {
  text-decoration: none;
}

/* for ContactMe */
.line-input {
  border: none;
  border-bottom: 1px solid #ddd; /* Lighter border for line-only effect */
  border-radius: 0;
  background-color: transparent;
  padding: 10px 5px; /* Increase space inside the input */
  font-size: 16px;
  transition: border-color 0.3s ease;
  width: 100%;
}

.line-input:focus {
  border-bottom-color: #007bff; /* Focus color */
  outline: none;
}


/* end for ContactMe */


/* End from Giang */