:root {
  --primary: #ffffff;
  --secondary: #ececec;
  --accent: #169dd9;
  --action: #2ecc71;
  --nav-color: #2e4145;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  width: 100%;
}

body {
  font-size: 16px;
  background: var(--secondary);
}

.l-page {
  background: #fff;
  height: 100vh;
}

.btn-login {
  background: var(--action);
  color: #fff;
  text-transform: uppercase;
}

table {
  margin: 0 !important;
}

.btn-transform {
  background: var(--action);
  color: #fff;
  /* font-weight: bold; */
  /* border: 1px solid black; */
}

.btn-transform:hover {
  /* transform: scale(1.1); */
  color: #fff;
}

/* Navbar */
.navbar {
  background: var(--nav-color);
}

.nav-link {
  color: #fff !important;
  text-transform: uppercase;
}

/* Badges */
/* .bg-success {
  background: rgb(0, 255, 0) !important;
  color: black !important;
}

.bg-danger {
  background: rgb(255, 0, 0) !important;
  color: white !important;
} */

/* Wrapping container */
.container-xxl {
  max-width: 1900px;
  padding: 5px;
}

/* Shift containers */
.day-shift-container,
.night-shift-container,
.safe-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  background: var(--primary);
}

.shift__header {
  background: var(--accent) !important;
  color: var(--primary) !important;
}

/* Insert containers */
.insert__close-container {
  height: 90vh;
}

.insert__header {
  background: var(--nav-color);
  color: white;
}

/* dashboard inserts */
.insert__body {
  padding: 0 0.25rem;
}

.insert__footer {
  font-size: 0.75rem;
  padding: 0 5px;
  height: 75px;
  background: var(--nav-color);
  color: white;
}

.insert__timestamp {
  color: yellow;
}

.insert__comment {
  font-size: 0.8rem;
}

/* Forms */
.form__login-container {
  height: 90vh;
}

.form__login-container img {
  margin-bottom: 20px;
}

.insert__close__form {
  /* border: 1px solid black; */
  border-radius: 10px;
  padding: 10px;
}

/* Search form */
.search__btn {
  width: 50px;
  align-items: center;
}

textarea {
  resize: none;
}

.nav-item .active {
  text-transform: uppercase;
}

.active {
  color: var(--accent) !important;
}

.employee-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2px;
}

.employees {
  background: var(--primary) !important;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--nav-color);
  border: none;
}

.hourly {
  background: var(--accent) !important;
  color: #fff;
}

.salary {
  background: var(--action) !important;
  color: #fff;
}

.employees:hover {
  background: var(--nav-color) !important;
  color: #fff;
}

.add-employee {
  display: flex;
  flex-direction: column;
  height: 105px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 10px;
  right: 10px;
}

.add-employee-btn {
  background: var(--action);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}

.dropdown-item,
.dropdown-menu {
  background: var(--nav-color) !important;
  color: #fff;
  text-transform: uppercase;
}

.dropdown-item:hover {
  color: var(--accent) !important;
}

