/* rms_service/dashboard/static/intenta.css */

:root {
  --header-height: 122px;
  --footer-height: 40px;
  --raised-column-width: 95%;
  --color-background-gray: rgb(246, 246, 246);
  --color-intenta-red: rgb(204, 0, 51);
  --color-datatables-selected: rgba(13, 110, 253, 0.9);
  --color-bs-btn-light: #f8f9fa;
  --color-bs-btn-light-hover: #d3d4d5;
}

html,
body {
  height: 100%;
}

/* Updated Background Image Path */
body {
  background-image: url("squared_metal.png");
}

nav {
  height: var(--header-height);
  width: var(--raised-column-width);
  margin: 0px auto;
  border-top: 10px solid var(--color-intenta-red);
  /* Updated Image Path */
  background-image: url("content-top.png");
  background-repeat: no-repeat;
  background-size: 100% 4px;
  background-position: right bottom;
  background-color: var(--color-background-gray);
}

/* ... rest of CSS ... */

.nav-logo:before {
  width: 226px;
  height: 72px;
  display: block;
  /* Updated Image Path */
  background-image: url("icon_intenta-subline.svg");
  content: "";
  background-size: 100% 100%;
}