.cjenici-heading {
  color: #254674;
  text-align: center;
  font-family: "GTSuperDisplay";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cjenici-table {
  display: flex;
  width: 100%;
}
.cjenici-table-row {
  padding: 10px;
  border-top: 0.5px solid #6F6F6F;
}
.cjenici-table-row:hover .cjenici-link p {
  color: #254674;
  transition: 0.5s ease-in-out;
}
.cjenici-table-row:hover .cjenici-link::after{
  background-image: url(../img/csv-icon-blue.svg);
    transform: scale(1.1);
  transition: 0.25s ease-in-out;
}
.cjenici-table-row:last-of-type {
  border-bottom: 0.5px solid #6F6F6F;
}
.cjenici-table p {
  margin: 0 !important;
}
.cjenici-datum p {
  color: #6F6F6F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; 
}
.cjenici-link p {
   color: #6F6F6F;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;

  transition: 0.5s ease-in-out;
}
.cjenici-link::after{
  content: "";
  background-image: url(../img/csv-icon.svg);
  background-size:cover;
  width: 25px;
  height: 24px;
  display: block;
  transform: scale(1);
  transition: 0.25s ease-in-out;
  margin-left: 13px;
}
.drop-area {
  max-width: 500px;
  height: 200px;
  width: 80%;
  border: 1px dashed #254674;
  background-color: #fff;
  transition: 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.drop-area.hover, .drop-area:hover {
  background-color: rgba(37, 70, 116, 0.1);
  transition: 0.5s ease-in-out;
}
.drop-area p {
  font-family: "DM Sans";
  font-size: 17px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #000000;
  position: relative;
  margin-bottom: 0;
}
.upload-icon {
  width: 50px !important;
}
.file-name {
  margin-top: 30px;
  max-width: 500px; 
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.upload-result {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out;
}
.upload-result.show {
    opacity: 1;
  visibility: visible;
  transition: 0.5s ease-in-out;
}
.upload-result-cont {
  max-width: 500px;
  padding: 30px;
  background-color: #fff;
  text-align: center;
}
.upload-files p {
   font-size: 14px;
  line-height: normal;
}
.success-upload {
  color: green;
  font-size: 14px;
  line-height: normal;
}
.error-upload {
  color: red;
  font-size: 14px;
  line-height: normal;
}
.napomena {
  font-size: 14px;
  color: #254674;
}
.date-tab {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.date-tab a {
  color: #6F6F6F;
  font-weight: bold;
  font-size: 16px;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 10px;
}
.csv-cont {
  width: calc(100% - 150px);
}
.csv-cont h3 {
  color: #254674;
  font-family: "DM Sans";
}
.date-tab a.active {
  border-bottom: 2px solid #254674;
}
@media only screen and (max-width: 600px) {
  .cjenici-heading {
      font-size: 30px;
    letter-spacing: 1px;
  }
  .cjenici-table {
    flex-direction: column;
  }
  .date-tab {
    display: flex;
    width: 100%;
    flex-direction: row;
    overflow: scroll;
    scrollbar-width: none; /* Firefox */
  }
  .element::-webkit-scrollbar { /* Chrome, Safari */
      display: none;
  }
  .date-tab a {
    margin-right: 20px;
  }
  .csv-cont {
    width: 100%;
  }
}