/* proprietăți mobile */
@media (max-width: 767px) {
    body {
        position: relative;
    }
    html {
        position: absolute !important;
        width: 100%;
    }
}

/* 📲 Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    body {
        width: 100%;
        height: 100%;
        position: relative;
    }
    html {
        position: absolute !important;
        width: 100%;
        height: 100%;
    }
}

/* proprietăți desktop */
@media (min-width: 1024px) {
    body {
        width: 100%;
        height: 100% !important;
        position: relative;
    }
    html {
        width: 100%;
        height: 100% !important;
        position: absolute !important;
    }
    .timeline-image{
        max-width: 60%;
    }
}

@layer utilities {
  .timeline-box {
    @layer daisyui.l1.l2.l3 {
      & {
        font-size: 1.2rem !important;
      }
    }
  }
}

.mainContainer {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
}

.list-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    padding: 30px;
}

.list-element {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: x-large;
    margin-top: 4%;
    margin-bottom: 4%;
}

.list-element img{
  width: 30%;
}

.issuesSpecialList{

}

.alert-error-dark {
    & {
        color: white;
        --alert-border-color: #5c1521;
        --alert-color: #45111a;
    }
}

.alert-info-dark {
    & {
        color: white;
        --alert-border-color: rgb(0, 75, 102);
        --alert-color: #003c52;
    }
}

.issuesSpecialList div{
  margin-top: 2em;
  margin-bottom: 2em;
}

.issuesSpecialList div a {
    color: white;
    margin-top: 2em;
    margin-bottom: 2em;
    display: flex;
    justify-content: space-between;
}


.homeButton {

}

.navbarButton{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbarClass {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}

.navbarRightTab {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}