/*
 * Base structure
 */

/* Move down content because we have a fixed navbar that is 50px tall */
body {

}

.description-tooltip {
  position: fixed;
  left: 250px; /* Position directly at the right edge of sidebar */
  background-color: #1f242b ; /* Bright blue background color matching the image */
  color: white; /* White text color */
  border: none; /* Remove border */
  border-radius: 0; /* Remove rounded corners */
  padding: 10px 15px; /* Match panel-heading padding */
  max-width: 300px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 999; /* Just below sidebar z-index of 1000 */
  font-size: 16px; /* Slightly larger font */
  line-height: 1.4;
  overflow-wrap: break-word;
  font-weight: 500; /* Semi-bold text */
  display: flex;
  align-items: center; /* This centers content vertically */
  box-sizing: border-box; /* Include padding in height calculation */
  /* Animation properties will be set in JavaScript */
}

/* Responsive adjustment for mobile */
@media (max-width: 767px) {
  .description-tooltip {
    left: 0; /* On mobile, position at the left edge */
    top: 50px; /* Below the navbar */
  }
}
#logo {
  width: 70px;
  text-align: center;
}

.sidebar-top {
  width: 100%;
  text-align: center;
}

/*
 * Global add-ons
 */

.sub-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/*
 * Top navigation
 * Hide default border to remove 1px line.
 */
.navbar-fixed-top {
  border: 0;
}

/*
 * Sidebar
 */

.sidebar {
  display: none;
  padding: 0;
}

.panel-heading {
  padding: 10px 5px;
}

.panel-title {
  padding: 0 15px;
  text-align: center;
}

.panel-title img {
  width: 40px;
}

/* Hide for mobile, show later */
@media (min-width: 768px) {
  .sidebar {
    position: fixed;
    bottom: 5%;
    left: 0;
    z-index: 1000;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    /* Scrollable contents if viewport is shorter than content. */
    background-color: #f5f5f5;
    border-right: 1px solid #eee;
  }
}

@media (max-width: 600px) {
  body {
	  margin-top: 50px;
  }
  .navbar{
	background-color: #29292d;
  }
}

/* Sidebar navigation */
.nav-sidebar>li>a {
  padding-right: 20px;
  padding-left: 20px;
}

.nav-sidebar>.active>a,
.nav-sidebar>.active>a:hover,
.nav-sidebar>.active>a:focus {
  color: #fff;
  background-color: #428bca;
}


/*
 * Main content
 */
.main {
  padding: 20px;
}

.main .page-header {
  margin-top: 0;
}


/*
 * Placeholder dashboard ideas
 */
.placeholders {
  margin-bottom: 30px;
  text-align: center;
}

.placeholders h4 {
  margin-bottom: 0;
}

.placeholder {
  margin-bottom: 20px;
}

.placeholder img {
  display: inline-block;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .main {
    padding-right: 40px;
    padding-left: 40px;
  }
}