/* Sidebar styles */
.sidebar {
  background-color: #333;
  color: white;
  height: 100vh;
  overflow-y: auto;
  padding-top: 20px;
  width: 200px;
  position: fixed;
  left: 0;
  /* Add box-shadow to the right for a slight shadow effect */
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2); /* Adjust the values as needed */
}
/* Custom CSS for more spacing */
.list-unstyled.custom-spacing {
  margin-top: 40px; /* Adjust the margin-top value as needed */
}

.col-md-9 {
  margin-left: 180px; /* Increase the margin to add more space */
  max-width: 70%;
}

.sidebar h4 {
  text-align: center;
  margin-bottom: 20px;
}

.sidebar ul.list-unstyled {
  padding: 0;
}

.sidebar ul.list-unstyled li {
  margin-bottom: 15px; /* Increase the margin to add more space between list items */
}

.sidebar a {
  color: #fff;
  text-decoration: none;
  padding: 25px; /* Decrease the padding to add more space between links */
  margin-top: 20px; /* Increase the margin to add more space between links */
}

/* Adding hover effect for sidebar items */
.sidebar a:hover {
  background-color: #4aa1ffd5; /* Change this to the desired background color for the hover and active states */
  color: #fff; /* Change this to the desired text color for the hover and active states */
  padding: 8px; /* Adjust the padding as needed */
  border-radius: 5px; /* Add rounded corners */
  margin-left: 20px;

  /* Add box-shadow to the right for a slight shadow effect in hover and active states */
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2); /* Adjust the values as needed */
          /* Text color on hover (Optional, keeping it white here) */
}

.company-name {
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: white;
  font-size: 24px;
}

/* Content styles */
.content {
  padding: 50px;
}

/* Sidebar and content adjustments */
.col-auto, .col-sm-10 {
  background-color: hsla(220, 42%, 38%, 0.912);
  color: rgb(90, 29, 29);
  position: fixed;
  top: 0;
  bottom: 0;
  width: 200px;
  margin-left: 220px; /* Increase the margin to match the sidebar */
  overflow-y: auto;
  z-index: 1;
}

/* Add this CSS to style the active sidebar item */
.sidebar-link.active {
  background-color: #007bff; /* Change this to the desired background color for the active item */
  color: #fff; /* Change this to the desired text color for the active item */
  padding: 8px; /* Adjust the padding as needed */
  border-radius: 5px; /* Add rounded corners */
  margin-left:20px;
}

/* Add this CSS rule to change the font size of the table */
#companyTable {
  font-size: 14px; /* Adjust the font size as needed */
}

.col-md-6 { font-size:14px;}

.col-sm-12  {

  margin-bottom:30px;
}

.dataTables_info  {
font-size:14px;
}

.list-settings {
  margin-top:95%;
  font-weight:lighter;
  text-align: left;
  margin-left:10px;
}


/* Add this to your existing CSS */
.clickable-row:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}


h2 {
  margin-bottom: 20px;
  font-weight: 600;
}

/* Dropdowns & Filters */
select, input[type="radio"] {
  margin-right: 2px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  padding: 5px 5px;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s;
}

select:hover, input[type="radio"]:hover {
  border-color: #adb5bd;
}

label {
  margin-right: 15px;
  margin-top:20px;
  cursor: pointer;
}


.table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
}


#companyTable th, #companyTable td {
  border-bottom: 1px solid #e9ecefa7;
  border-top: 1px solid #e9ecef;

}
/* CSS styles for change headers (1-Week Change and 1-Month Change) */
.change-header {
  font-weight: bold;
}

/* CSS styles for change column (1-Week Change and 1-Month Change) */
.change-column {
  text-align: right;
  padding-right: 10px;
}

/* CSS styles for positive change (growth) */
.growth {
  color: green; /* Change text color to green for positive change */
}

/* CSS styles for negative change (reduction) */
.reduction {
  color: red; /* Change text color to red for negative change */
}




