@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
* {
  box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  color: #393533;
  background: linear-gradient(45deg, #dbdbdb, #ffffff);
  margin: 0;
  display: flex;
  flex-direction: column; }

html, body {
  height: 100%;
  margin: 0; }

#root {
  overflow-y: visible !important;
  height: auto !important; }

.main-container, .profile-container {
  margin: auto;
  background-color: #ffffff;
  max-width: calc(100% - 20px);
  text-align: center;
  padding: 10px;
  height: -webkit-fill-available;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  flex: 1; }

.content-container {
  padding: 10px;
  margin: auto; }

.content-container-bak {
  transition: 0.3s;
  display: flex;
  justify-content: center;
  max-width: 100%;
  text-align: center;
  padding: 10px;
  height: -webkit-fill-available;
  border-radius: 8px; }

.mui-shifted-label-input .MuiInputLabel-root {
  margin-top: -25px;
  transform: scale(1);
  font-weight: inherit;
  color: #000000 !important; }
  .mui-shifted-label-input .MuiInputLabel-root.Mui-focused {
    color: #000000; }

.mui-shifted-label-input .Mui-error {
  margin-left: 0; }

.mui-shifted-label-input .MuiOutlinedInput-root {
  border: 1px solid #000000;
  border-radius: 0.5rem; }
  .mui-shifted-label-input .MuiOutlinedInput-root:hover {
    border-color: #40B6BE; }

.mui-shifted-label-input .MuiOutlinedInput-input {
  border: none; }

.mui-shifted-label-input .MuiOutlinedInput-notchedOutline {
  border: none; }

.error {
  color: #d32f2f;
  font-size: 14px; }

.link, .login-form .login-form-container .link, .register-form .register-form-container .link {
  font-weight: inherit;
  text-decoration: none; }
  .link:hover, .login-form .login-form-container .link:hover, .register-form .register-form-container .link:hover {
    text-decoration: underline; }

.MuiDivider-root {
  margin: 10px 0 !important;
  border-width: 1px !important; }

.btn {
  background-color: #1565C0;
  /* Green */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 8px 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px; }

.btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed; }

.btn:hover:not(:disabled) {
  background-color: #3399FF; }

input[type="file"] {
  display: none; }

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  align-items: center;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); }

.header .logo-btn {
  display: flex;
  align-items: center;
  font-size: 28px !important;
  font-weight: 800;
  padding-right: 20px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease; }

.header .logo-btn img {
  max-width: 300px;
  height: auto;
  margin-right: 15px; }

.header .logo-title {
  font-size: 42px;
  font-weight: 600;
  color: #092d5c;
  line-height: 1;
  padding-top: 22px; }

.header a {
  text-decoration: none;
  color: #535353;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, border-bottom 0.3s ease; }

.header a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background-color: grey;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease; }

.header a:hover {
  color: #b2b2b2; }

.header a:hover::after {
  transform: scaleX(1);
  transform-origin: left; }

.header .header-buttons-container {
  display: flex;
  gap: 30px;
  align-items: center; }

.header .header-buttons-container a {
  font-size: 16px; }

.footer {
  background-color: #1b3352;
  color: white;
  font-family: 'Montserrat', sans-serif;
  padding: 40px;
  width: 100%;
  bottom: 0; }

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto; }

.footer-logo, .footer-links, .footer-subscribe {
  flex: 1;
  margin-right: 20px;
  min-width: 250px; }

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px; }

.footer-links h4, .footer-subscribe h4, .footer p, .footer-links a {
  font-weight: 600;
  /* Dodano podebljanje za sve tekstove */ }

.footer-links ul {
  list-style: none;
  padding: 0; }

.footer-links .links-wrapper {
  display: flex;
  /* Dva reda linkova */
  justify-content: space-between; }

.footer-links li {
  margin: 5px 0; }

.footer-links a {
  text-decoration: none;
  color: white; }

.footer-button {
  border: none;
  background-color: #009bbd;
  color: white;
  padding: 10px;
  cursor: pointer; }

.footer-button:hover {
  background-color: #007ba1; }

.footer-subscribe form.subscribe-form {
  display: flex;
  align-items: center;
  /* Align items horizontally */ }

.footer-subscribe input {
  padding: 10px;
  margin-right: 10px;
  max-width: 250px;
  /* Ograničena širina za bolje prilagođavanje */ }

.footer-bottom {
  text-align: left;
  /* Lijeva poravnanja za copyright */
  margin-top: 20px; }

.footer-copyright {
  margin-top: 20px;
  color: #b2b2b2; }

.footer-hr {
  margin: 1rem 0;
  background-color: #005685;
  border: 0;
  height: 2px; }

.footer hr {
  background: #148dcf;
  height: 4px; }

.file-upload-component .drop-zone {
  display: flex;
  flex-direction: column; }
  .file-upload-component .drop-zone .dropzone {
    width: auto;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4c4c4;
    border-radius: 10px;
    border: 2px dashed lightblue;
    padding: 0 20px; }
  .file-upload-component .drop-zone .meta-data {
    display: flex;
    padding-top: 14px; }
    .file-upload-component .drop-zone .meta-data button {
      font-size: 15px; }
      .file-upload-component .drop-zone .meta-data button img {
        padding-right: 4px; }
    .file-upload-component .drop-zone .meta-data .Mui-disabled {
      background-color: #c4c4c4; }
    .file-upload-component .drop-zone .meta-data aside {
      display: flex;
      align-items: center;
      padding: 0 10px; }
      .file-upload-component .drop-zone .meta-data aside h4 {
        margin: 5px 0; }
      .file-upload-component .drop-zone .meta-data aside ul {
        margin: 0 10px;
        padding: 0 10px; }
      .file-upload-component .drop-zone .meta-data aside .uploaded-files {
        margin: 0; }
        .file-upload-component .drop-zone .meta-data aside .uploaded-files .file-row {
          margin: 0; }
  .file-upload-component .drop-zone .uploaded-files {
    margin-top: 20px; }
    .file-upload-component .drop-zone .uploaded-files .file-row {
      display: flex;
      margin-bottom: 8px; }
      .file-upload-component .drop-zone .uploaded-files .file-row img {
        margin-right: 12px; }
      .file-upload-component .drop-zone .uploaded-files .file-row .description {
        font-size: 14px;
        color: #c4c4c4; }

.csv_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999; }

.csv_modal {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%; }

.csv_spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.global-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 100000; }
  .global-loader .linear-loader .MuiLinearProgress-bar {
    background-color: #40B6BE; }
  .global-loader .spinner {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    -webkit-animation: rotation 1s infinite linear;
    -moz-animation: rotation 1s infinite linear;
    -o-animation: rotation 1s infinite linear;
    animation: rotation 1s infinite linear;
    border: 6px solid rgba(0, 0, 0, 0.2);
    border-radius: 100%; }
  .global-loader .spinner:before {
    content: "";
    display: block;
    position: absolute;
    left: -6px;
    top: -6px;
    height: 100%;
    width: 100%;
    border-top: 6px solid rgba(0, 0, 0, 0.8);
    border-left: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid transparent;
    border-radius: 100%; }

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg); } }

@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg); }
  to {
    -moz-transform: rotate(359deg); } }

@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg); }
  to {
    -o-transform: rotate(359deg); } }

@keyframes rotation {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }

#custom-modal .MuiPaper-root {
  overflow: auto;
  width: max-content;
  height: auto;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  padding: 10px 30px 30px 30px; }
  #custom-modal .MuiPaper-root .custom-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  #custom-modal .MuiPaper-root .image {
    margin-right: -12px;
    border-radius: 50%; }
    #custom-modal .MuiPaper-root .image:hover {
      cursor: pointer;
      background: #c4c4c4; }

.yes-no-dialog .MuiPaper-root {
  width: 460px;
  height: 270px;
  border-radius: 20px; }
  .yes-no-dialog .MuiPaper-root .MuiTypography-h6 {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0;
    margin-top: 45px; }
  .yes-no-dialog .MuiPaper-root .MuiDialogContent-root {
    display: flex;
    align-items: center;
    justify-content: center; }
    .yes-no-dialog .MuiPaper-root .MuiDialogContent-root .MuiDialogContentText-root {
      font-size: 16px;
      font-weight: 400;
      font-size: 16px; }
  .yes-no-dialog .MuiPaper-root .MuiDialogActions-root {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    padding-left: 45px;
    padding-right: 45px;
    margin-bottom: 36px; }
    .yes-no-dialog .MuiPaper-root .MuiDialogActions-root .MuiButton-root {
      width: 160px;
      height: 50px; }

.select-box {
  margin-top: 16px;
  margin-bottom: 8px; }
  .select-box .MuiFormControl-root .MuiInputBase-root {
    border: 1px solid #000000;
    border-radius: 0.5rem; }
    .select-box .MuiFormControl-root .MuiInputBase-root:hover {
      border-color: #40B6BE; }
    .select-box .MuiFormControl-root .MuiInputBase-root .MuiOutlinedInput-notchedOutline {
      border: none; }
  .select-box .MuiFormHelperText-root {
    margin-left: 0;
    color: #d32f2f; }
  .select-box .select-label {
    margin-top: -25px;
    transform: scale(1);
    font-weight: inherit;
    color: #000000 !important; }
  .select-box .select-placeholder {
    transform: scale(1);
    margin: 0;
    padding: 8.5px 14px;
    opacity: .5;
    color: #000000 !important; }
  .select-box .Mui-error .MuiSelect-select {
    color: #d32f2f; }

.custom-table .header-container {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  justify-content: space-between; }
  @media screen and (max-width: 992px) {
    .custom-table .header-container {
      align-items: inherit;
      flex-direction: column; } }
  .custom-table .header-container .search-container {
    display: flex;
    align-items: center;
    gap: 10px; }
  .custom-table .header-container .add-button {
    font-size: 15px;
    padding: 12px 24px;
    background: #40B6BE;
    color: #ffffff;
    height: 50px;
    border-radius: 10px; }
    .custom-table .header-container .add-button img {
      margin-right: 10px;
      filter: brightness(5); }

#searchfield-container .MuiPaper-root {
  width: 316px;
  box-shadow: none;
  border-radius: 10px;
  border: 1px solid #c4c4c4;
  display: flex;
  align-items: center;
  padding: 4px 8px; }
  @media screen and (max-width: 992px) {
    #searchfield-container .MuiPaper-root {
      width: auto; } }
  #searchfield-container .MuiPaper-root .MuiInputBase-root {
    width: 100%; }

#drawer .MuiDrawer-paper {
  border-radius: 20px 0 0 20px; }
  @media screen and (min-width: 992px) {
    #drawer .MuiDrawer-paper {
      max-width: 50%; } }

.full-screen-modal {
  max-width: 700px;
  padding: 0 30px; }
  .full-screen-modal .full-screen-modal-header {
    display: flex;
    align-items: center;
    margin-left: -14px;
    gap: 10px; }
    .full-screen-modal .full-screen-modal-header .cross-button {
      display: flex;
      border-radius: 15px; }
      .full-screen-modal .full-screen-modal-header .cross-button:hover {
        background: #c4c4c4;
        cursor: pointer; }
    .full-screen-modal .full-screen-modal-header .title {
      text-transform: uppercase;
      font-size: 24px;
      font-weight: 500; }
  .full-screen-modal .full-screen-modal-content {
    width: auto; }

.sort-filter-container {
  display: flex;
  flex-direction: column;
  gap: 5px; }
  .sort-filter-container .sort-filter-type {
    padding: 10px;
    border-radius: 20px; }
    .sort-filter-container .sort-filter-type:hover {
      background-color: #c4c4c4;
      cursor: pointer; }

/* CsvFileUpload.css */
.file-input-wrapper {
  margin-bottom: 10px; }

.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 10px 12px;
  cursor: pointer;
  background-color: #3399FF;
  color: white;
  border-radius: 5px; }

.custom-file-upload:hover {
  background-color: #0080FF; }

.message {
  font-size: 14px;
  color: red;
  margin-top: 10px; }

/* Loading overlay styles */
.csv_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; }

.csv_modal {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center; }

.csv_spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #3399FF;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  animation: spin 1s linear infinite; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.login-form {
  display: flex;
  justify-content: center;
  height: 90%; }
  .login-form .login-form-container {
    width: 20em;
    margin: auto;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
    .login-form .login-form-container .login-form-inputs {
      display: flex;
      flex-direction: column;
      gap: 10px; }
    .login-form .login-form-container .link {
      display: flex;
      justify-content: center;
      margin-top: 10px; }

.register-form {
  display: flex;
  justify-content: center;
  height: 90%; }
  .register-form .register-form-container {
    width: 20em;
    margin: auto;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }
    .register-form .register-form-container .register-form-inputs {
      display: flex;
      flex-direction: column;
      gap: 10px; }
    .register-form .register-form-container .link {
      display: flex;
      justify-content: center;
      margin-top: 10px; }

.profile-container .profile-image {
  width: 200px;
  height: 200px;
  border: 2px solid #c4c4c4; }

/*# sourceMappingURL=style.css.map */