:root {
  --petrol: #004d5d;
  --aqua: #1ba7a6;
  --mustard: #f9971c;
  --red: #de1f26;
  --gray: #505050;
  --sliver: #d3d3d3;
}

* {
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  text-align: inherit;
  vertical-align: middle;
}

li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
}

.table {
  width: 100%;
  overflow: scroll;
}

i {
  font-size: 1.25rem;
}

.navbar-brand  {
  text-transform: capitalize;
color: var(--aqua);
font-weight: 600;
}
.primary-theme {
  background-color: var(--petrol) !important;
  color: white;
}

.primary-theme > * {
  background-color: var(--petrol) !important;
  color: white;
}

.primary-theme * {
  color: white !important;
}

.primary-theme .active {
  border-radius: 5px;
}
.grey-text{
  color: var(--gray);
}
.red-text {
  color: var(--red) !important;
}
.petrol-text {
  color: var(--petrol) !important;
}
.aqua-text {
  color: var(--aqua) !important;
}

.mustard-text {
  color: var(--mustard) !important;
}

.job-status p{
 font-size: 2rem;
 font-weight: 600;
}

.text-mustard {
  color: var(--mustard) !important;
  font-weight: 600;
  font-size: 1.4rem;
}

.text-list-mustard  {
  color: var(--mustard) !important;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 15px 0 0px;
}
.text-aqua {
  color: var(--aqua) !important;
  font-size: .9rem;
  font-weight: 500;
}

.active {
  background-color: var(--mustard) !important;
  border-color: var(--mustard) !important;
}

.logo-md {
  width: 130px;
  margin: auto;
  display: block;
  margin-bottom: 10px;
}

.logo-xs {
  width: 130px;
}

.h-auto {
  height: 100vh;
  overflow: hidden;
}
.form-control:focus,
.form-select:focus {
  outline: var(--mustard) 1px solid;
  border-color: var(--mustard);
  box-shadow: none;
  transition: 0.2s;
}

.full-height-without-nav {
  height: calc(100vh - 58px);
  overflow-y: auto;
}

.full-height {
  height: 100vh ;
  overflow-y: auto;
}

.btn-primary-theme {
  background-color: var(--mustard);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary-theme:hover {
  opacity: 0.8;
}

.btn-outline-primary-theme {
  color: var(--mustard);
  border-color: var(--mustard);
  background-color: rgba(255, 255, 255, 0);
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
  border-width: 2px;
  border-style: solid;
}

.btn-outline-primary-theme:hover {
  background-color: var(--mustard);
  color: white;
}

.icon-btn {
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0);
  color: var(--mustard);
  border: none;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 1px;
}

.icon-btn:hover {
  background-color: #f9951c25;
}

.breadcrumb-item a {
  color: var(--mustard);
  text-decoration: underline;
}



/* Add CSS to make the iframe full width and height */
iframe {
  width: 100%;
height: inherit;
  border: none;
}

.job-status-button {
  text-decoration: none;
    padding: 10px 20px;
    border: 2px solid rgba(249, 151, 28, 0.1); /* Add your desired border color */
    border-radius: 10px;
    color: #000; /* Add your desired text color */
    display: inline-block;
    margin: 10px;
    cursor: pointer;
    text-align: center;
}

.job-status-button:hover {
  background-color: rgba(249, 151, 28, 0.1); /* Background color with opacity */
  color: #fff; /* Add your desired text color on hover */
}