body {
  font-size: 0.8rem;
  font-family: 'Work Sans';
}

/* Loader styles */
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 1);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999; /* Ensure loader is on top */
}

#loader .spinner {
	border: 8px solid #f3f3f3; /* Light grey */
	border-top: 8px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Hide main content initially */
#content {
	display: none;
}

.container-fluid.bg {
  background-image: linear-gradient(rgba(0,0,0,.125) 1px, transparent 1px);
  background-size: 100vw 41px;
  margin: 20px;
  padding: 0;
  width: calc(100% - 40px);
}

.new-target {
  min-height: 100vh;
}

.source-new-targets .list-group-item:hover, .new-target .list-group-item:hover {
  cursor: pointer;
}

.ui-draggable-dragging {
  cursor: grab;
}

.ui-sortable-helper, .ui-sortable-placeholder {
  min-height: 41px !important;
}

.list-group-item:not(.ui-draggable-dragging) {
  line-height: 24px;
  text-overflow: ellipsis;
  width: 100%;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.list-group-item.in-use {
  background-color: #94c376;
}

.remove-button {
  color: #db2a21;
  font-size: 24px;
}




/* =================================
	Header
=================================== */
#header {
  background-color: #FFF;
  height: auto;
  position: relative;
}
@media (min-width: 768px) {
  #header {
    min-height: 115px;
  }
}
#header .brand {
  background-color: #FFFFFF;
  display: inline-block;
  height: 115px;
  padding: 7.5px 25px;
}
#header .brand img {
  height: 100px;
}
#header .nav {
  border: 2px solid #1d1d1b;
  border-radius: 8px;
}
#header .nav .nav-item .nav-link {
  border-radius: 0;
  color: #1d1d1b;
  font-size: 0.75em;
  font-weight: 500;
  height: 48px;
  padding: 1rem 0;
  text-align: center;
  text-transform: uppercase;
  width: 45px;
}
@media (min-width: 768px) {
  #header .nav .nav-item .nav-link {
    padding: 1rem 1.25rem;
    width: auto;
  }
}
#header .nav .nav-item .nav-link.active {
  background-color: #1d1d1b;
  color: #FFFFFF;
}
#header .nav .nav-item .nav-link i {
  font-size: 1.5em;
}
#header #run-jira-update {
  font-size: 1.25em;
  margin-right: 0.5em;
  text-decoration: none;
}

/* =================================
	Dashboard - Home
=================================== */
#dashboard-home h1 {
  font-weight: 700;
  margin: 0 2rem;
  text-transform: uppercase;
}
#dashboard-home h1 span {
  font-weight: 200;
}
