

.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
  margin-bottom: 10px;
}
.form-signin .checkbox {
  font-weight: normal;
}
.form-signin .form-control {
  position: relative;
  font-size: 16px;
  height: auto;
  padding: 10px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="text"] {
  margin-bottom: -1px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tabbable-bordered .nav-tabs
{
    margin-bottom: 0;
}

.tabbable-bordered .tab-content
{
    padding: 10px;
    border-radius: 0 0 4px 4px;
    border: 1px solid #ddd;
    border-top: 0;
}

.tabbable-bordered.tabs-left .tab-content
{
    border: 1px solid #ddd;
    border-left: 0;
}

.tabbable-bordered.tabs-right .tab-content
{
    border: 1px solid #ddd;
    border-right: 0;
}

.tabbable-bordered.tabs-below .tab-content
{
    border: 1px solid #ddd;
    border-bottom: 0;
}

	

	
.nav>li>a:focus, .nav>li>a:hover {
  background-color: #eee;
}



/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 200px;
  border: 1px solid #f1f1f1;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
}



.star-rating {
  line-height:32px;
  font-size:1.5em;
}


.star-rating .glyphicon-star:hover{color: yellow;}
.star-rating  .selected{color: yellow;}

/* Base styles for tree rows */
.tree-row {
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 0;
  transition: background-color 0.2s ease;
}

/* Hover effect on the entire row */


/* Padding and layout for the text container */
.treerowtext {
  padding: 0.5rem 0.75rem;
}

/* Link styles within tree nodes */
.treerowtext a {
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
  display: block;
  width: 100%;
}

/* Remove separate hover effects on the text link—inherit the row hover */
.treerowtext a:hover {
  text-decoration: none;
  color: inherit;
}

/* Fixed caret container to reserve space */
.caret-container {
  width: 24px;
  text-align: center;
  font-size: 1rem;
}

/* Folder icon styling */
.tree-row .bi-folder-fill {
  font-size: 1rem;
  color: #6c757d;
}

/* Ensure inner container displays items inline and aligned */
.treerowinside {
  display: flex;
  align-items: center;
}

/* Active row styling */
.tree-row.active .treerowtext {
  background-color: #e7f1ff;
  font-weight: 600;
}

/* Remove border from last row if desired */
.tree-row:last-child {
  border-bottom: none;
}




