:root {

  --notification_red: #d93333;
  --headerbutton: rgb(128, 172, 238);
  --bluebutton:#3971a0;
  --bluebutton_hover: #1564da;
  --headerblue: #245f91;
  --backgroundblue: #2e405e;

  --category_grey: #ebebeb;
  --container_gray: #d4d5d4;
  --container_darkgray: #cfcfcf;

  --duedate_green:#b0d172;

  --font_white: #e4e6ea;


  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  color-scheme: light only;
}

.Version {
  position: absolute;
  bottom: 5px;
  right: 5px;
  cursor: pointer;
}

.MobileVersion {
  position: absolute;
  top: 5px;
  right: 10px;
}


::-webkit-scrollbar {
  scrollbar-width: none;
}


span {
  text-wrap: pretty;
  word-break: break-word;
}


input {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */

  background-color: white;
  color: black;
}

textarea {
  background-color: white;
  color: black;
  border-radius: 5px;
}

label {
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

span {
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

img {
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}



body {
  margin: 0;
  display: block;
  min-width: 320px;
  min-height: 100vh;
  background-color: var(--backgroundblue);
}

.hidden {
  display: none;
}


.Outer {
  padding: 10px;
  padding-top: 30px;
  -webkit-user-select: none;
}

.MobileOuter {
  margin: 0px;
  padding: 10px;
  -webkit-user-select: none;
  padding-bottom: 80px;
  overflow: hidden;
}

input[type='select'] {
  background-color: white;
  color: black;
}

input[type='checkbox'] {
  background-color: white;
  color: black;
}

input[type='text'] {
  border-radius: 5px;
}

.Icon {
  height: 25px;

}

button:disabled,
button[disabled] {
  border: 1px solid #999999 !important;
  background-color: #cccccc !important;
  color: #666666 !important;
  cursor: no-drop !important;
}

button:disabled:hover,
button[disabled] {
  border: 1px solid #999999 !important;
  background-color: #cccccc !important;
  color: #666666 !important;
  cursor: no-drop !important;
}

button {
  font-size: large;
  color: #ffff;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
  border: none;
  background-color: var(--bluebutton);
}

button:hover {
  background-color: var(--bluebutton_hover);
}

.editablemark {
  height: 18px;
  align-self: center;
  /* margin-left: auto; */
  margin-right: 5px;
}

.TitleHeader {
  display: flex;
}


.RedButton :disabled {
  background-color: #a1a1a1;
}

.RedButton {
  background-color: var(--notification_red) !important;
  color: white;
  margin-left: 5px;
}

.RedButton:hover {
  background-color: rgb(194, 36, 36) !important;

}
.MenuBreak
{
    width: 40px;
}.Loading {
  display: flex;
  font-size: xx-large;
  z-index: 1000000;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}

.LoadingBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
}

.loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  color: #bbb;
}

.loader:before,
.loader:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}

.loader:after {
  color: #FF3D00;
  transform: rotateY(70deg);
  animation-delay: .4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spin {

  0%,
  100% {
    box-shadow: .2em 0px 0 0px currentcolor;
  }

  12% {
    box-shadow: .2em .2em 0 0 currentcolor;
  }

  25% {
    box-shadow: 0 .2em 0 0px currentcolor;
  }

  37% {
    box-shadow: -.2em .2em 0 0 currentcolor;
  }

  50% {
    box-shadow: -.2em 0 0 0 currentcolor;
  }

  62% {
    box-shadow: -.2em -.2em 0 0 currentcolor;
  }

  75% {
    box-shadow: 0px -.2em 0 0 currentcolor;
  }

  87% {
    box-shadow: .2em -.2em 0 0 currentcolor;
  }
}.RefreshBtn {
    position: fixed;
    width: 50px;
    margin-left: calc(50% - 25px);
    margin-right: auto;
    z-index: 1000;
    background-color: var(--headerblue);
    text-align: center;
    height: 50px;
    border-radius: 50px;
    animation: slideDown 1s forwards;
    justify-items: center;
    align-content: center;
    cursor: pointer;
    /* display: none; */
    -webkit-user-select: none;
}

/* Keyframes for sliding the div down */
@keyframes slideDown {
    from {
        top: -100%;            /* Start off-screen at the top */
    }
    to {
        top: 60px;                /* End at its original position */
    }
}

/* Transition for the image */
.RefreshBtn img {
    transition: transform .5s;
    height: 30px;
    display: flex;
    margin: auto;
}

/* Rotate the image on hover */
.RefreshBtn img:hover {
    transform: rotate(360deg);    /* Rotate the image 360 degrees */
}.header {
  display: flex;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: var(--headerblue);
}

.header-top {
  top: 0;
}

.header-top .UserHeaderContainer {
  margin-left: auto;
}

.header-bottom {
  bottom: 0px;
  height: 60px;
  justify-content: center;
}

/* .header-bottom.roundscreencorners {
  bottom: 0px;
  height: 60px;
  justify-content: center;
} */




.header-bottom .TabButton {
  display: flex;
  background-color: var( --headerbutton);
  width: 20%;
  font-weight: bold;
  font-size: x-small;
  color: #ffffff;
  /* padding: 5px; */
  border-radius: 5px;
  cursor: pointer;
  margin: 3px; 
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header-bottom .TabButton .TabButtonContent {
  /* background-color: aquamarine; */
  padding: 0 10px;
}


.header button {
  margin: 5px;
}


.HeaderImg {
  width: 37px;
  margin: 5px;
}

.MobileHeaderImg {
  display: none;
}.Category {
    display: block;
    width: auto;
    max-width: 250px;
    flex-grow: 1;
    height: fit-content;

    background-color: var( --category_grey);
    border-radius: 5px;
    padding: 5px;
    margin: 5px;

}

.CategoryContainerHeader {
    display: block;
}

.CategoryContainerHeaderBtnContainer {
    display: flex;
}

.Category h1 {
    color: #57667e;
    overflow: hidden;
}

.DoneCategoryImg {
    display: flex;
    height: 25px;
    width: 25px;
    border-radius: 15px;
    margin-right: 10px;
    align-self: center;
    object-fit: cover;
}


.CategoryInput {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    background: none;
    border: none;
    color: #57667e;
    width: 100%;
}

.CategoryInput {
    outline: none !important;
}

.AddBtnContainer {
    display: flex;
    align-items: flex-start;
    text-align: center;
    margin-top: 10px;
}

.BtnAddCard {
    display: block;
    flex-grow: 1;
    text-align: center;
    justify-self: center;
    -webkit-user-select: none;
    font-weight: bold;
}

.BtnAddCard:hover {
    background-color: #57667e;
}

.Category button {
    border: none;
}

.CategoryDelBtn {
    margin-top: 10px;
    margin-left: auto;
    margin-right: 10px;
    font-size: 14px;
    cursor: pointer;
    color: #57667e;
    font-weight: bolder;
    font-family: "Nunito", sans-serif;
    -webkit-user-select: none;
    height: fit-content;
}

.CategoryDelBtn:hover {
    color: red;
}


/* MOBILE */

.MobileCategory {
    display: block;
    width: auto;
    /* max-width: 250px; */
    flex-grow: 1;
    height: fit-content;

    background-color:  var( --category_grey);
    border-radius: 5px;
    padding: 5px;
    margin: 5px;

}

.MobileCategory h1 {
    color: #57667e;
}

.MobileCategory button {

    border: none;
}

.CardsContainer {
    min-height: 30px;
}.Card {
    display: block;
    width: auto;
    height: fit-content;

    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 5px;
    margin: 5px;

    font-size: 10px;
    color: black;
    -webkit-user-drag: element;

}

.Card.hidden {
    /* background-color: #818c9f; */
}

.Card img {
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
}


.Card h1 {
    color: #818c9f;
}

.UserImgContainer {
    padding-bottom: 5px;
}

.UserImgInnerContainer {
    display: flex;
    margin-left: 5px;
}


.UserImgContainer Img {

    height: 25px;
    width: 25px;
    border-radius: 15px;
    margin-right: 10px;
    object-fit: cover;
}

.CardContainerHeader {
    display: flex;
}

.CardEnvelope h1 {
    width: -webkit-fill-available;
    /* text-overflow: ellipsis; */

    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-break: break-word;
}

.CardContainerHeaderSide {
    display: block;
}

.CardDelBtn {
    margin-left: auto;
    /* margin-right: 10px; */
    font-size: 14px;
    font-weight: bolder;
    font-family: "Nunito", sans-serif;
    cursor: pointer;
    color: black;
    -webkit-user-select: none;
    height: fit-content;
}


.CardDelBtn:hover {
    color: red;
}

.SubTaskContainer {
    display: block;
}

.CardMoveBtn:hover {
    background-color: #c8cace;
}

.CardContainerHeader .TicketImg{
    display: flex;
    height: 25px;
    width: 25px;
    border-radius: 15px;
    margin-right: 10px;
    align-self: center;
    object-fit: cover;
    margin-top: 0px;
    align-self: start;
}.MenuBackground {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.24);
    justify-content: center;
    align-content: center;
    backdrop-filter: blur(6px);
}

.MenuWindow {
    background-color: white;
    display: grid;
    color: black;
    width: 50%;
    height: fit-content;
    max-height: 60%;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: scroll;
    scrollbar-width: none;
}

.MenuWindowHeader {
    display: flex;
    font-size: x-large;
    user-select: none;
}

.CloseMenuBtn {
    color: black;
    margin: auto;
    margin-top: 0px;
    padding-top: 10px;
    margin-right: 20px;
    margin-left: 0px;
    width: fit-content;
    font-weight: bolder;
    font-family: "Nunito", sans-serif;
    user-select: none;
}

.CloseMenuBtn:hover {
    color: var(--notfication_red);
    cursor: pointer;
}

.MenuTitle {
    font-size: larger;
}

/* MOBILE */

.MobileMenuWindow {
    display: block;
    background-color: #fff;
    color: #000;
    width: 80%;
    height: auto;
    /* Changed from fit-content to auto */
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: scroll;
    max-height: 80%;
}

.MobileCardMenuWindow {
    background-color: white;
    display: grid;
    color: black;
    height: fit-content;
    max-height: calc(100% - 80px);
    padding: 10px;
    overflow: scroll;
    scrollbar-width: none;
}.activity-list {
  max-height: 200px;
  overflow-y: auto;
}

.activity {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.activity img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.DescriptionContainer {
  display: grid;
}

.DescriptionContainerHeader {
  font-size: large;
  font-weight: bold;
}

.CardDescription {
  resize: vertical;
  min-height: 40px;
  background-color: white;
  color: black;
}

.UserContainer {
  display: grid;
  margin-bottom: 10px;
}

.UserContainerHeader {
  font-size: large;
  font-weight: bold;
}

.CardMemberContainer {
  display: grid;
  margin-bottom: 10px;
  width: fit-content;
}


.DueDateContainer {
  display: grid;
  margin-bottom: 10px;
}

.DueDateContainerHeader {
  font-size: large;
  font-weight: bold;
}


.CheckListContainer {
  /* display: grid; */
  margin-bottom: 10px;
}

.CheckListContainerHeader {
  font-size: large;
  font-weight: bold;
}

.ActivityContainer {
  display: grid;
  margin-bottom: 10px;
  margin-top: 30px;
}

.ActivityContainerHeader {
  font-size: large;
  font-weight: bold;
}

.CommentContainer {
  display: grid;
  margin-bottom: 10px;
}

.CommentContainerHeader {
  font-size: large;
  font-weight: bold;
}

.AddCommentTextArea {
  resize: vertical;
  background-color: white;
  color: black;
  min-height: fit-content;
}


.AddCommentContainer {
  display: grid;
}

.BtnAddComment {
  margin: 5px 0px;
}




.EditMenuInput {
  display: block;
  font-size: larger;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
  background: none;
  border: none;
  /* color: white; */
  width: 90%;
  color: black;
}

.EditMenuInput {
  outline: none !important;
}


.MenuWindowFooter {
  display: block;
}

.MenuWindowUpperFooter {
  justify-content: right;
  display: flex;
}

.MenuWindowLowerFooter {
  justify-content: right;
  display: flex;
}

.MenuWindowLowerFooter button {
  flex-grow: 1;
}

.MobileMenuWindow .MenuWindowFooter {
  padding-bottom: 25px;
}


/* MOBILE */

.MobileMenuWindow .MobileMenuWindowContentContainer {
  overflow: visible;
  height: 100%
}

.MobileMenuWindowUpperFooter{
  justify-content: center;
}

.MobileMenuWindowUpperFooter button{
  flex-grow: 1;
}
.MenuWindowUpperFooterButtonCotainer{
  display: flex;
}

.AssociatedTicketContainer {
  display: flex;
  background-color: var(--container_darkgray);
  border-radius: 5px;
  align-self: center;
  height: 26px;
  padding: 0px 3px;
}

.AssociatedTicketContainer * {
  margin-right: 5px;
}

.TicketPreview {
  display: block;
  background-color: var(--bluebutton);
  color: white;
  width: auto;
  padding: 0px 10px;
  border-radius: 5px;
  align-self: center;
  text-align: center;
  font-size: smaller;
  max-width: calc(50% - 20px);
  overflow: hidden;
  /* Ensure that overflowing text is hidden */
  white-space: nowrap;
  /* Prevent text from wrapping */
  text-overflow: ellipsis;
  /* Show ellipsis for overflowed text */
  user-select: none;
}

.TicketPreview:hover {
  background-color: #57667e;
  cursor: pointer;
}

.Closed {
  background-color: var(--duedate_green)
}


.Archived {
  background-color: #aaaaaa;
}

.MenuWindowHeader .TicketImg {
  display: flex;
  height: 25px;
  width: 25px;
  border-radius: 15px;
  margin-right: 10px;
  align-self: center;
  object-fit: cover;
  margin-top: 0px;

}/* CardActivity.css */

.activity {
    display: block;
    align-items: center;
    margin-bottom: 10px;
    background: #eeeeee;
    padding: 5px;
    border-radius: 5px;
  }
  
  .activity-image {
    display: flex;
    cursor: pointer;
    height: 25px;
    width: 25px;
    border-radius: 15px;
    margin-right: 10px;
    align-self: center;
    object-fit: cover;
  }

  .activityHeader{
    display: flex;
  }
  
  .activityHeaderUsername{
    margin-right: auto;
  }

  .activityHeaderTimeStamp{

  }/* CardActivityList.css */

.activity-list {
    max-height: 200px;
    overflow-y: auto;
  }
  .CheckListListContainer{
    background-color: var(--container_gray);
    padding: 5px;
    margin-top: 5px;
    border-radius: 5px;
}

.CheckListContainerHeader {
    display: flex;
}

.CheckListItem{
    display: flex;
    margin-top: 5px;
}

.CheckListItemInput{
    flex-grow: 1;
    margin-right: 4px;
}

.CheckListNameInput{
    font-size: large;
}

.CheckListItemDueDateInput{
    margin-right: 4px;
}

.BtnAddChecklistItem{
    margin: 0px;
    margin-top: 5px;
}.DeleteMenuWindow {
    background-color: #fff;
    color: #000;
    width: 50%;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: scroll;
    scrollbar-width: none;

}


.MobileDeleteMenuWindow {
    background-color: #fff;
    color: #000;
    width: 80%;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
}

.DeleteMenuWindow button{
    flex-grow: 1;
}

.ButtonContainer{
    display: flex;
    padding-top: 20px;
}
/* CardActivity.css */

.comment {
    display: grid;
    align-items: center;
    margin-bottom: 10px;
    background: #eeeeee;
    border-radius: 5px;
    padding: 5px;
  }
  
  .comment-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 10px;
  }
  
  .commentHeader{
    display: flex;
  }
  
  .commentHeaderUsername{
    margin-right: auto;
  }

  .commentyHeaderTimeStamp{

  }

  .commentHeaderDeleteBtn{
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
    font-family: "Nunito", sans-serif;
    -webkit-user-select: none;
  }

  .commentHeaderDeleteBtn:hover{
  font-weight: bolder;
  }/* CardActivityList.css */

.comment-list {
    max-height: 200px;
    overflow-y: auto;
  }
  .TaskCounter{
    font-size: medium;
    font-weight: bold;
    flex-grow: 0;
    background: var(--headerblue);
    color: white;
    width: fit-content;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.AllFinnished
{
    background: var(--duedate_green)
}

.DueDateNear
{
    background: var(--notfication_red);
}.DueDateDisplay{
    font-size: medium;
    font-weight: bold;
    flex-grow: 0;
    background: var(--duedate_green);
    color: white;
    width: fit-content;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
    -webkit-user-select: none;
}

.IsDue{
    background: var(--notification_red);
}.MoveMenuWindow {
    background-color: white;
    color: black;
    width: 50%;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    padding-bottom: 10px;
}

.MobileMoveMenuWindow {
    background-color: white;
    color: black;
    width: 80%;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    padding-bottom: 10px;
}

.MoveMenuWindow button {
    flex-grow: 1;
}

.ButtonContainer {
    display: flex;
    padding-top: 20px;
}



.CategorySelect {
    margin-top: 10px;
}

.CategorySelect select {
    font-size: larger;
    flex-grow: 1;
    width: 100%;
}.TicketOptionsMenuWindow {
  background-color: #fff;
  color: #000;
  width: 50%;
  height: fit-content;
  margin: auto;
  border-radius: 10px;
  padding: 10px;
  overflow: scroll;
  scrollbar-width: none;
  max-height: 70%;
}


.MobileTicketOptionsMenuWindow {
  top: 50px;
  bottom: 100px;
  position: fixed;
  background-color: white;
  color: black;
  margin: auto;
  padding: 10px;
  overflow: overlay;
  height: 60%;
  border-radius: 20px;
  width: -webkit-fill-available;
}

.ButtonContainer {
  display: flex;
  padding-top: 20px;
  margin-top: 20px;
}

.TicketOptionsMenuWindow .TicketText {
  background: var(--container_gray);
  padding: 10px;
  border-radius: 5px;
  height: 190px;
  overflow: scroll;
  margin-bottom: 10px;
}

.MobileTicketOptionsMenuWindow .MobileMenuWindowContentContainer {
  overflow: visible;
  /* height: 100% */
}


.BoltHeader {
  display: flex;
  margin-right: 10px;
  margin-top: 5px;
  margin-left: auto;
}

.BoltHeader Img {
  height: 25px;
}

.AssociatedTicketContainerContainer {
  display: flex;
}

.AssociatedTicketContainerContainerWide {
  display: block;
}

.BtnShowLinkContainer {
  margin-left: auto;
  margin-right: 10px;
}

.LinkContainer {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  /* Allows items to wrap if necessary */
}

.LinkTicketSelect {
  height: fit-content;
  flex: 1 1 auto;
  /* Allows the select to grow and shrink as needed */
  margin-right: 10px;
  /* Adjust spacing between select and button */
  min-width: 0;
  /* Prevents the select from exceeding the container width */
}

.BtnLinkTicket {
  flex-shrink: 0;
  /* Prevents the button from shrinking */
}

.TicketOptionsMenuWindow .CloseMenuBtn {
  color: black;
  margin: auto;
  padding-top: 0px;
  width: fit-content;
  font-weight: bolder;
  font-family: "Nunito", sans-serif;
  user-select: none;
  margin: 0 5px 0px 0px !important;
}.Ticket {
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #818c9f;
    padding: 10px;
    border-radius: 5px;
}

.TicketContainer .Ticket {
    height: auto;
    flex-grow: 1;
    margin: 5px;
}


.ListTicket {
    width: 98%;
    height: auto;
    flex-grow: 1;
    margin: 5px;
}

.MobileTicketContainer .Ticket {
    height: auto;
    flex-grow: 1;
    /* width: 100%; */
    margin-bottom: 10px;
}

.BoardTicketSelect {
    font-size: larger;
    margin-top: 10px;
}

.TicketHeader {
    display: flex;
}

.CloseMenuBtn {
    color: black;
    margin: auto;
    margin-top: 0px;
    margin: 0 5px 0px auto;
    padding-top: 0px;
    width: fit-content;
    font-weight: bolder;
    font-family: "Nunito", sans-serif;
    user-select: none;
}

.CloseMenuBtn:hover {
    color: firebrick;
    cursor: pointer;
}

.SelectContainer {
    display: grid;
}

.SelectContainer select {
    margin-bottom: 5px;
}

.Ticket .TicketText {
    margin-bottom: 10px;
    text-overflow: ellipsis;
    text-wrap: wrap;
    max-width: 300px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.Ticket .HiddenTicketText{
    display: none;
}

.ListTicket .TicketText {
    max-width: unset;
}

.TicketHeaderText {
    margin-bottom: 10px;
    font-weight: bold;
    max-width: 300px;
}

.TicketInfoContainer {
    display: block;
    margin-top: auto;
    margin-bottom: 5px;
}



.ListTicketInfoContainer {
    display: flex;
    margin-top: auto;
    margin-bottom: 5px;
}

.ListTicketInfoContainer div {
    margin-right: 5px;
}

.Font_Normal {
    font-weight: normal;
}

.Font_Bold {
    font-weight: bold;
}

.PrioContainer {
    display: flex;
    grid-template-columns: auto auto;
    column-gap: 8px; /* Adds space between the columns */
    align-items: center; /* Vertically centers items */
  }

.TicketButton {
    background-color: var( --headerbutton);
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-left: auto;
}

.TicketButton:hover {
    background-color: var(--bluebutton_hover);
}

.TicketStatusContainer {
    display: flex;
}

.CardStatusLabel {
    margin-left: 5px;
}

.TicketControlls {
    display: block;
}

.ListTicketControlls {
    display: flex;
}.AssetDisplay{
    font-size: medium;
    font-weight: bold;
    flex-grow: 0;
    background: var(--headerblue);
    color: white;
    width: fit-content;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}/* .Board{
    display: block;
    padding: 10px;
    width: auto;
} */

.CategoryContainer {
    display: flex;
    flex-wrap: wrap;
}

.MobileCategoryContainer {
    display: block;
    flex-wrap: wrap;
}


.BoardInput {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    background: none;
    border: none;
    color: #ffffff;
    width: 100%;
}

.BoardInput {
    outline: none !important;
}


.NewCategoryLabel {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.521);
    /* width: 100%; */
    user-select: none;
    cursor: pointer;
}

.NewCategory {
    display: block;
    width: auto;
    max-width: 250px;
    flex-grow: 1;
    height: fit-content;

    background-color: var(--headerbutton);
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
}


.NewCategory:hover {
    background-color: var(--bluebutton_hover);
    color: white;
}


.NewCategory:hover .NewCategoryLabel {
    color: white;
}



/* Mobile */
.MobileBoard {
    display: block;
    padding: 10px;
    width: auto;
}


.MobileNewCategory {
    display: block;
    width: auto;
    flex-grow: 1;
    height: fit-content;
    background-color: var(--headerbutton);
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
}

.BoardHeaderContainer {
    display: flex;
    margin-left: 10px;
}

.MobileBoardHeaderContainer {
    display: table-cell;
    margin-left: 10px;
    overflow: hidden;
    width: 100%;
}


.BoardEditMenuContainer {
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
}

.BoardEditMenuBtn {
    background-color: var(--headerbutton);
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    font-weight: bold;
}

.BoardEditMenuBtn:hover {
    background-color:  var(--bluebutton_hover);
    color: white;
}




.placeholder_ {
    height: 50px;
    /* Adjust as necessary */
    border: 2px dashed #ccc;

    touch-action: none;
    pointer-events: none;
    


    display: block;
    width: auto;

    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
}.ShareBoardMenuWindow {
    background-color: white;
    color: black;
    width: 50%;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    padding-bottom: 10px;

}

.ShareBoardWindow button{
    flex-grow: 1;
}

.ButtonContainer{
    display: flex;
    padding-top: 20px;
}



.SearchControl{
    font-size: large;
}

.DeleteBoardMenuWindow button{
    flex-grow: 1;
}.DeleteBoardMenuWindow {
    background-color: white;
    color: black;
    width: 50%;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    padding-bottom: 10px;

}

.DeleteBoardMenu button{
    flex-grow: 1;
}

.ButtonContainer{
    display: flex;
    padding-top: 20px;
}

.DeleteMenuWindow {
    background-color: #fff;
    color: #000;
    width: 50%;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: scroll;
    scrollbar-width: none;
    max-height: 50%;
}


.MobileDeleteMenuWindow {
    background-color: #fff;
    color: #000;
    width: 80%;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    max-height: 50%;
}

.DeleteMenuWindow button {
    flex-grow: 1;
}

.ButtonContainer {
    display: flex;
    padding-top: 20px;
}.MenuWindow {
    height: fit-content;
    max-height: 60%;
}


.GenaeralBoardContainer {
    margin-bottom: 10px;
}

.MenuWindowHeaderText {
    padding-top: 10px;
}

.SearchControl {
    font-size: large;
}

.SearchControl input {
    border: black;
    border-width: 1px;
    border-style: solid;
    border-radius: 5px;

    width: 90%;
}

.BoardContainerHeader {
    font-size: large;
}

.CategoriesTable {
    width: 100%;
    border-collapse: collapse;
}

.CategoriesTable th,
.CategoriesTable td {
    border: 1px solid var(--font_white);
    padding: 8px;
}

.CategoriesTable th {
    background-color:  var(--font_white);
}

.UserSelect {
    max-height: 200px;
    overflow-y: scroll;
    scrollbar-width: thin;
}




.MenuWindowFooter {
    display: block;
}

.MenuWindowUpperFooter {
    justify-content: right;
    display: flex;
}

.MenuWindowLowerFooter {
    justify-content: right;
    display: flex;
}

.MenuWindowLowerFooter button {
    flex-grow: 1;
}

.BoardPreviewContainer{
    display: flex;
    flex-flow: wrap;
}

.MobileBoardPreviewContainer{
    display: block;
}

.NewBoardLabel{
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.521);
    /* width: 100%; */
    user-select: none;
    cursor: pointer;
}

.NewBoard{
    background-color: var( --headerbutton);
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 30%;
}


.NewBoard:hover{
    background-color: var(--bluebutton_hover);
    color: white;
}


.NewBoard:hover .NewBoardLabel{
    color: white;
}

.MobileNewBoard{
    display: block;
    width: auto;
    flex-grow: 1;
    height: fit-content;
    background-color: var( --headerbutton);
    border-radius: 5px;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
}

.HeaderText{
    margin-left: 10px;
}

.BoardOverviewHeader{
    display: flex;
    align-items: center;
}






.BoardPreview{
    background-color: var(--container_darkgray);
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 30%;
}

.BoardPreview:hover{
    background-color: var(--bluebutton_hover);
    color: white;
}


.BoardPreview:hover .NewCategoryLabel{
    color: white;
}

.BoardPreviewUserContainer Img {
    height: 25px;
    width: 25px;
    border-radius: 15px;
    margin-right: 10px;
    object-fit: cover;
}


/* Mobile */


.MobileBoardPreview{
    background-color: var(--container_darkgray);
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.BoardNameContainer{
    display: flex;
}

.BoardNameContainer h1{
    text-overflow: clip;
    overflow: hidden;
}

.BoardPreviewFavIcon{
    height: 25px;
    align-self: center;
    margin-left: auto;
    margin-right: 5px;
}

.StarBtn{
    background: none;
    height: fit-content;
    align-self: center;
    border: none;
    margin-left: auto;
    margin-right: 5px;
}

.StarBtn:hover{
    background: none;
    height: fit-content;
    align-self: center;
    border: none;
}.PermissionMenuWindow {
    background-color: #fff;
    color: #000;
    width: 50%;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: scroll;
    scrollbar-width: none;

}


.MobilePermissionMenuWindow {
    background-color: #fff;
    color: #000;
    width: 80%;
    height: fit-content;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
}

.PermissionMenuWindow button{
    flex-grow: 1;
}

.ButtonContainer{
    display: flex;
    padding-top: 20px;
}
.ReleaseNotesViewer {
    overflow: auto; /* Enables scrolling */
    max-height: 50vh; /* Restricts height to viewport */
}

.ContentContainer {
    overflow-y: auto; /* Vertical scrolling */
    /* max-height: 100%; Ensures it doesn't overflow */
    padding: 10px; /* Adds some space inside */
}
.SortBtnContainer {
    display: flex;
    margin: 5px;
    height: fit-content;
    align-items: center;
    justify-items: left;

    margin-left: auto;

}

.SortBtn {
    padding: 5px;
    background: var(--headerbutton);
    width: fit-content;
    border-radius: 5px;
    cursor: pointer;
    margin: 0px 4px;
}

.MobileSortingMenu {
    display: flex;
    position: fixed;
    z-index: 100000;
    bottom: 60px;
    background: var(--headerblue);
    width: 100%;
    left: 0;
    padding: 10px 0px;
    align-items: stretch;
    justify-content: space-evenly;
}

.sortingImg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}.TaskOverviewContainer .CardsContainer {
    display: flex;
    flex-flow: row;
    flex-direction: row;
    flex-wrap: wrap;
    user-select: none;
}

.TaskOverviewContainer .Card {
    max-width: calc(1920px / 5);
    min-width: 300px;

}

.TaskOverviewContainer .CardEnvelope {
    height: 100%;
    display: contents;

}

.Card {
    height: auto;
    flex-grow: 1;
}

.TabButton {
  background-color: var( --headerbutton);
  font-weight: bold;
  font-size:large;
  color: #ffff;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
  align-content: center;
  text-align: center;
  justify-content: center;
  padding-top: auto;
  padding-bottom: auto;
  user-select: none;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}


.TabButton:hover {
  background-color: var(--bluebutton_hover);
}.UserHeaderContainer {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    align-self: center;
}



*:focus {
    outline: none;
}

.UserHeaderImgNameContainer {
    display: flex;
    height: 100%;
    align-self: center;
    cursor: pointer;
}

.UserHeaderImgContainer Img {
    display: flex;
    cursor: pointer;
    height: 25px;
    width: 25px;
    margin-left: 5px;
    border-radius: 15px;
    margin-right: 10px;
    align-self: center;
    object-fit: cover;
}

.MobileUserHeaderImgContainer Img {
    display: flex;
    cursor: pointer;
    height: 25px;
    width: 25px;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 15px;
    align-self: center;
    object-fit: cover;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-2px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(2px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-2px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(2px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}


.NotificationIcon {
    height: 25px;
    width: 25px;
    border-radius: 5px;
    background: #e5e5e5;
    /* margin-right: 10px; */
    text-align: center;
    color: black;
    font-weight: bold;
    user-select: none;
}

.NotificationIcon:hover {
    background: var( --headerbutton);
    color: white;
    animation: none;
    cursor: pointer;
}

.has-notification {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
    background: var(--notification_red);
    color: white;
}


.UserHeaderName {
    display: flex;
    cursor: pointer;
    align-self: center;
    font-weight: bold;
}

.MobileUserHeaderMenuContainer {
    position: absolute;
    right: 0px;
    bottom: 60px;
    background-color: var(--category_grey);
    border-top-left-radius: 5px;
}

.UserHeaderMenuContainer {
    position: absolute;
    right: 0px;
    top: 47px;
    background-color: var(--category_grey);
    border-bottom-left-radius: 5px;
}

.Hidden {
    display: none;
}

.UserHeaderMenuItem {
    font-weight: bold;
    margin: 5px;
    background-color: var(--headerblue);
    cursor: pointer;
    padding: 5px;
    padding-left: 50px;
    padding-right: 10px;
    border-radius: 5px;
    text-align: right;
}

.UserHeaderMenuItem:hover {
    background-color: var(--bluebutton);
}


.MobileUserHeaderMenuItem{
font-weight: bold;
margin: 5px;
background-color: var(--headerblue);
cursor: pointer;
padding: 15px;
padding-left: 50px;
padding-right: 10px;
border-radius: 5px;
text-align: right;
}


.UserHeaderNameContainer {
    display: unset;
    text-wrap: nowrap;
}

@media (max-width: 1200px) {
    .UserHeaderNameContainer {
        display: none;
    }
}.avatar {
    width: 15%;
}

/* ::-webkit-scrollbar {
    width: 14px;
  }
  
  ::-webkit-scrollbar-thumb {
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 9999px;
    background-color: #AAAAAA;
  } */.NotificationMenuContainer {
    background: rgb(236, 236, 236);
    position: absolute;
    right: 0px;
    top: 47px;
    border-bottom-left-radius: 5px;

    max-height: 310px;
    min-height: 310px;
    height: 310px;
    overflow-y: scroll;
    width: 500px;
    user-select: none;

}


.NotificationListTitle{
    font: x-large;
    color: black;
    font-weight: bold;;
    margin-left: 10px;
}

.MobileNotificationMenuContainer {
    position: absolute;
    right: 0px;
    bottom: 60px;
    background: rgb(236, 236, 236);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    height: 400px;
    overflow: scroll;
}

.NoNotificationsText {
    margin: 10px;
    /* font-weight: bolder; */
    /* font-size: large; */
    color: black;
}

.NotificationItem {
    display: flex;
    background: #fff;
    color: black;
    padding: 5px;
    border-radius: 5px;
    margin: 10px;
}

.NotificationAvatar {
    display: flex;
    height: 25px;
    width: 25px;
    border-radius: 15px;
    margin-right: 10px;
    align-self: start;
    object-fit: cover;
}

.NotificationContent {
    margin-left: 5px;
    width: 480px;
    display: block;
}

.NotificationButton {
    font-size: large;
    color: #ffff;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    border: none;
    background-color: var(--bluebutton);
    display: flex;
    flex-grow: 0;
    text-align: center;
    width: fit-content;
    justify-self: end;
}

.NotificationButton:hover {
    background-color: var(--headerblue);
}.MobileTicketContainer {}

.TicketOverviewContainer {
    padding-top: 30px;
}

.TicketContainer {
    margin-top: 10px;
    display: -webkit-box;
    flex-wrap: wrap;
}



.TicketManagementUserBtn {
    background-color: var( --headerbutton);
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-left: auto;

}

.TicketManagementUserBtn:hover {
    background-color: var(--bluebutton_hover);
    color: white;
}

.TicketmanagementHeader {
    display: flex;
    margin-left: auto;
    margin-right: 10px;

}

.ModulTitle {
    display: flex;

}

.TitleBtn {
    height: 24px;
    /* margin-left: auto; */
    align-self: center;
    cursor: pointer;
}

.TicketHeaderContainer{
    display: flex;
}

.TicketCategorySelect{
    height: fit-content;
    font-size: x-large;
    margin-left: 20px;
    align-self: center;

}

.TicketFilterContainer{
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

.TicketFilter{
    height: fit-content;
    /* margin-left: 20px; */
    align-self: center;
}

#YourTicketsHeader{
    display: block;
}.TicketManagementOptionsMenuWindow {
  background-color: #fff;
  color: #000;
  width: 50%;
  height: 80%;
  margin: auto;
  border-radius: 10px;
  padding: 10px;
  overflow: scroll;
  scrollbar-width: none;

}


.MobileTicketManagementOptionsMenuWindow {
  top: 50px;
  bottom: 100px;
  position: fixed;
  background-color: white;
  color: black;
  margin: auto;
  padding: 10px;
  overflow: overlay;
  height: 60%;
  border-radius: 20px;
}

.MobileTicketManagementOptionsMenuWindow .ContentContainer {
  /* overflow: scroll; */
  overflow-wrap: anywhere;
  height: 440px;
}

.ButtonContainer {
  display: flex;
  padding-top: 20px;
  margin-top: 20px;
}

.UserPermission {
  display: flex;
}

.UserPermission img {
  display: flex;
  cursor: pointer;
  height: 25px;
  width: 25px;
  border-radius: 15px;
  margin-right: 10px;
  align-self: center;
  object-fit: cover;
}

.PermissionsTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.PermissionsTable th,
.PermissionsTable td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.PermissionsTable th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.MobileTicketManagementOptionsMenuWindow .PermissionsTable th {
  writing-mode: vertical-rl;
  /* Rotates text to vertical layout */
}

.MobileTicketManagementOptionsMenuWindow .MobileMenuWindowContentContainer {
  overflow: scroll;
  /* height: 100%; */
}

.tableFixHead {
  overflow: auto;
  height: 100px;
}

.tableFixHead thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}


.UserImage {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.UserPermissionRow img {
  vertical-align: middle;
}

.PermissionsContainer {
  height: 300px;
  overflow: scroll;
  scrollbar-width: thin;
  overflow-x: auto;
}

.TicketCategoryItem {
  display: flex;
}

.TicketCategoryContainer {
  width: fit-content;
  max-width: 100%;
}

.DeleteCategoryBtn {
  color: black;
  margin: auto;
  margin-top: 0px;
  margin: 0 5px 0px auto;
  padding-top: 0px;
  width: fit-content;
  font-weight: bolder;
  font-family: "Nunito", sans-serif;
  user-select: none;
}

.DeleteCategoryBtn:hover {
  color: var(--redbutton_hover);
  cursor: pointer;
  margin-left: auto;
}


.ButtonContainer button {
  flex-grow: 1;
  margin-bottom: 20px;
}

/* TicketManagementOptions.css */

/* Style for the ticket category items */
.TicketCategoryItem {
  display: flex;
  align-items: center;
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}

/* Apply grayish background to every other entry */
.TicketCategoryItem:nth-child(even) {
  background-color: var(--category_grey);
}.TicketFormContainer {
  margin: 10px;
}

.TicketFormContainer select {
  width: fit-content;
}

.form-group {
  display: grid;
}

.TicketDescription {
  resize: vertical;
  min-height: 200px;
  background-color: white;
  color: black;
}

.TicketExtraOptions {
  display: block;
}

.TicketFormBtn {
  margin: 5px;
  margin-left: 0px;
  margin-top: 10px;
}

.suggestions-container {
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  z-index: 1000;
  margin-top: 50px;
  border-radius: 5px;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suggestion-item {
  transition: background-color 0.2s ease-in-out;
  padding: 10px;
  cursor: pointer;
  color: black;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}

/* Styles for disabled suggestions */
.suggestion-item.disabled {
  background-color: #f9f9f9;
  padding: 10px;
  cursor: default;
  color: #999;
}

.suggestion-item.disabled:hover {
  background-color: #f9f9f9; /* Prevent hover effect */
}

.no-suggestions {
  padding: 10px;
  color: #999;
}

/* Positioning the suggestions container relative to the input */
.form-group {
  position: relative;
}
.MobileTicketContainer {}

.TicketContainer {
    display: -webkit-box;
    flex-wrap: wrap;
}

.ModulTitle {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.TitleBtn {
    height: 24px;
    /* margin-left: auto; */
    align-self: center;
    cursor: pointer;
}
.AssetList{
    display: flex;
    flex-wrap: wrap;
}
.Asset {
    display: block;
    /* width: auto; */
    height: fit-content;

    background-color: var(--category_grey);
    border-radius: 5px;
    padding: 5px;
    margin: 5px;

    color: black;
    -webkit-user-drag: element;

    width: calc(1920px / 5);
    min-width: 300px;
}

.Asset h1 {
    color: #57667e;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0px;
}

.Asset h2 {
    color: #57667e;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0px;
}

.Asset h3 {
    color: #57667e;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0px;
    cursor: pointer;
}

.Asset h4 {
    color: #57667e;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0px;
    cursor: pointer;
    align-self: center;
}

.AssetImage {
    width: 30px;
    height: 30px;
    aspect-ratio: 1;
    border-radius: 50px;
}

.AssetMainImage {
    width: 60px;
    height: auto;
    border-radius: 50px;
}

.Asset .CloseMenuBtn {
    margin-left: auto;
    align-self: flex-start;
}

.AssetCounterContainer {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.AssetHeaderContainer {
    display: block;
    justify-content: left;
    align-items: center;
}

.AssetHeaderButtonsContainer {
    display: flex;
    align-items: center;
    padding: 5px;
}

.AssetHeaderTextContainer {
    display: block;
    justify-content: left;
    align-items: center;
}

.AssetCounter {
    margin: 5px;
}

.AssetCounterHeader {
    display: flex;
    margin-bottom: 10px;
}.FormContainer label {
  display: grid;
  margin-bottom: 5px;
}