body {
  font-family: Arial, sans-serif;
  font-size: medium;
  padding-top: 16px;
}

.bg-custom {
  background-color: #c14b36;
  border-color: #c14b36;
  color: #fff;
}

.red {
  color: #c14b36;
}


.btn.custom-btn:hover {
  background-color: #a13e30;
  /* Darker shade for hover effect */
  border-color: #a13e30;
  color:white;
}

.section-title {
  margin-top: 30px;
  text-align: center;
}

.cta-button {
  margin-top: 16px;
}

/* Custom style for tick bullet points */
h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 16px;
}

a {
  color: #c14b36;
  text-decoration: none;
  font-size: 16px;
}

a:hover {
  text-decoration: underline;
  /* Adds underline on hover for clarity */
}

ul {
  list-style: circle;
  padding: 0;
}



ul.custom-tick-list {
  list-style: none;
  padding-left: 0;
  flex-wrap: wrap;
  /* Allows the list to wrap on smaller screens */
  gap: 15px;
  /* Space between items */
}

ul.custom-tick-list li {
  position: relative;
  color: #c14b36;
  padding-left: 25px;
  /* Space for the tick icon */
  margin-bottom: 10px;
}

ul.custom-tick-list li::before {
  content: '✓';
  /* Unicode for tick */
  color: #c14b36;
  /* Tick color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

ul li {
  font-size: 12px;
  margin-bottom: 10px;
}

.coming-soon {
  font-style: italic;
}

.custom-footer {
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 50px;
  border-radius: 16px;
  /* Full circle border radius */
  background-color: #c14b36;
  overflow: hidden;
  /* Ensure content stays within the border radius */
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-item {
    flex: 1;
    text-align: center;
    font-size: 14px;
  }

  .navbar-nav .nav-item .nav-link {
    width: 100%;
  }
}

/* Add gap of 10px between nav items on larger screens */
@media (min-width: 992px) {
  .navbar-nav .nav-item {
    font-size: 14px;
  }
  .navbar-nav .nav-item:not(:last-child) {
    margin-right: 10px;
  }
}

/* Optional button styling */
.custom-btn {
  padding: 10px 20px;
  background-color: #c14b36;
  border-color: #c14b36;
  color: #fff;
}


.bordered {
  border-color: lightgrey;
  padding-top: 16px;
  padding-bottom: 16px;
}

.bordered:hover .bordered:active {
  background-color: lightgoldenrodyellow;
}


/*music tools*/
.card {
  width: 350px;
  padding: 20px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  font-family: Arial, sans-serif;
}

/* Styling the term and definition text */
.card div {
  margin: 10px 0;
  font-size: 18px;
}

.term {
  font-weight: bold;
  font-size: 24px;
  color: #333;
}

/* Styling the buttons */
button {
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  margin: 5px;
  background-color: #c14b36;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #c14b36;
  color:white;
}

/* Aligning buttons horizontally */
.button-container {
  text-align: center;
}

/*table*/
#searchContainer {
  margin-bottom: 20px;
  overflow-x: auto;
  /* Enables horizontal scrolling */
  white-space: nowrap;
  /* Prevents content from wrapping to the next line */
  margin-left: 10px;
  /* Keep your existing margins */
  margin-right: 10px;
  padding: 10px;
  border: 1px solid #888;
  /* Optional: Add padding if needed */
}

#searchInput {
  width: 300px;
  padding: 10px;
  font-size: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th,
td {
  border: 1px solid grey;
  padding: 20px;
  text-align: left;
}

th {
  background-color: #f2f2f2;
}

tr:hover {
  background-color: #f9f9f9;
}

.no-results {
  text-align: center;
  font-style: italic;
  color: #888;
}