.nav-link {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
     margin-right: 3px;
}
.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
    position: relative;
	margin-top: -14px !important;
}
.nav-link:hover {
  color: #ccc;
}
.navbar.sticky-top {
	   background-color: #000000de !important;
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}
.navbar-nav {
    --bs-nav-link-padding-x: 0 !important;
    --bs-nav-link-padding-y: 0rem !important;;
}
.selected-artist-card {
    display: inline-block;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 5px;
}

.remove-artist-btn {
    margin-left: 5px;
    background-color: #f44336;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
}
.card {
  background-color: #f9f9f9; /* Change this to your desired background color */
  border-radius: 10px; /* Add rounded corners */
  padding: 20px; /* Add some padding */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

#track-featured-artist-checkboxes {
  max-height: 100px; /* Set a maximum height */
  overflow-y: auto; /* Make it scrollable */
  background-color: #333; /* Change this to your desired background color */
  padding: 10px; /* Add some padding */
  border-radius: 10px; /* Add rounded corners */
  color: #fff; /* Change text color to white */
}
#track-featured-artist-checkboxes div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#track-featured-artist-checkboxes div input[type="checkbox"] {
  margin-right: 10px;
}
#track-artist-checkboxes {
  max-height: 100px; /* Set a maximum height */
  overflow-y: auto; /* Make it scrollable */
  background-color: #333; /* Change this to your desired background color */
  padding: 10px; /* Add some padding */
  border-radius: 10px; /* Add rounded corners */
  color: #fff; /* Change text color to white */
}
#track-artist-checkboxes div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#track-artist-checkboxes input[type="checkbox"] {
  margin-right: 10px;
}

#video-featured-artist-checkboxes {
  max-height: 100px; /* Set a maximum height */
  overflow-y: auto; /* Make it scrollable */
  background-color: #333; /* Change this to your desired background color */
  padding: 10px; /* Add some padding */
  border-radius: 10px; /* Add rounded corners */
  color: #fff; /* Change text color to white */
}
#video-featured-artist-checkboxes div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#video-featured-artist-checkboxes div input[type="checkbox"] {
  margin-right: 10px;
}
#video-artist-checkboxes {
  max-height: 100px; /* Set a maximum height */
  overflow-y: auto; /* Make it scrollable */
  background-color: #333; /* Change this to your desired background color */
  padding: 10px; /* Add some padding */
  border-radius: 10px; /* Add rounded corners */
  color: #fff; /* Change text color to white */
}
#video-artist-checkboxes div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#video-artist-checkboxes input[type="checkbox"] {
  margin-right: 10px;
}



.navbar-nav.flex-nowrap.ms-auto {
  /* Add your CSS styles here */
  padding-bottom: 2px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.nav-propic-wrapper {
        padding: 3px;
    background: linear-gradient(45deg, #05f84b, #06341f, #020203);
    border-radius: 50%;
    display: inline-block;
}
.brand-wrapper {
  /*  padding: 5px;*/ 
  /*  background: linear-gradient(45deg, #05f84b, #06341f, #020203);*/ 
  /*  border-radius: 50%;*/
  /*  display: inline-block;*/ 
}
.form-control {
  width: 300px;
  height: 40px;
  font-size: 20px;
  padding: 3px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.truncate-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 150px; /* adjust the width as needed */
}
#add-artist-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 400px;
  height: 300px;
  display: none;
}

#add-artist-modal.show {
  display: block;
}

@media (max-width: 768px) {
  .truncate-title {
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .truncate-title {
    max-width: 97px;
  }
}

.btn {
     width: 63px;
  height: 40px;
  font-size: 1rem;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #043021;
  color: #fff;
  cursor: pointer;
}
.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 14px;
  background-color: red;
  border-radius: 50%;
}
.btn:hover {
  background-color: #444;
}
.wishlist-icon.updated i {
  color: #ff0000;
}
.jumbotron {
  background-color: #333;
  color: #fff;
  padding: 10px;
}

.jumbotron h1 {
  font-size: 48px;
  font-weight: bold;
}

.jumbotron p {
  font-size: 10px;
  font-weight: bold;
}

