/* This is based on the work of Joshua Saunders */
.board-layout {
    /*background-color: rgb(100, 92, 165);*/
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    display: grid;
    grid-template-rows: max-content auto;
    grid-gap: 10px;
    padding: 10px;
    margin-right: 20px;
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1); /* For Firefox */
    /*height:800px;*/
  }

  /* For WebKit browsers */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.6);
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}
.list-layout {
    display: grid;
    grid-gap: 10px;
   
  }

.search-result {
    font-size: 14px;
    color: #888;
    display: none;
}
.board-text {
    font-weight: bold;
    font-size: 28px;
    padding: 5px;
  }
.label-yellow {
	background: yellow;
	color: black;
}
.label-purple {
	background: purple;
	color: white;
}
.card:hover {
	border:thin solid navy;
}
.board-lists {
    display: grid;
    grid-auto-columns: 275px;
    grid-auto-flow: column;
    grid-gap: 0px;
    grid-template-rows: auto;
    /*height: 400px;*/
 
  }

.expanded {
    height: calc(100% + 300px);
}
  #board {
    bottom: 0;
    left: 0;
    margin-bottom: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    padding-top: 2px;
    position: absolute;
    right: 0;
    scrollbar-color: #fff6 #00000026;
    scrollbar-width: auto;
    top: -2px;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.labelCards .label {
   min-width: 36px !important;
   padding: 4px 6px !important; 
   display: inline-block;
}

#divLabel #labelList .label>span {
   display: inline !important;
}

.board-wrapper {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
}

.board-main-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-right: 0;
    position: relative;
}

.board-canvas {
    flex-grow: 1;
    margin-top: 12px;
    position: relative;
}

.KduRxx1lW4ExLH {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0 6px;
}

.bi0h3HALKXjfDq {
    padding: 0 6px;
    align-self: flex-start;
    flex-shrink: 0;
    display: block;
    height: 100%;
    white-space: nowrap;
}

.cursor {
    cursor: pointer;
}
  
  .wrapperlist {
    /*background-color: rgb(235, 236, 240);*/
    border-radius: 6px;
    display: grid;
    grid-auto-rows: max-content;
    grid-gap: 10px;
/* Chrome use a fixed height */
/*height: 300px;*/
    padding: 10px;
  }

  .board-list {
    width: 100%;
    background-color: rgb(235, 236, 240);
    border-radius: 6px;
    display: grid;
    grid-auto-rows: max-content;
    grid-gap: 10px;
/* Chrome use a fixed height */
/*height: 300px;*/
    padding: 10px;
  }

  .list {
    display: grid;
    grid-auto-rows: max-content;
    grid-gap: 10px;
  }
  
  .list-title {
    font-size: 18px;
    font-weight: bold;
  }
  .card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(9,30,66,.25);
    padding: 10px;
    cursor:pointer;
  }

  .card-drop {
    background-color: #DEDEDE;
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(9,30,66,.25);
    padding: 10px;
    cursor:pointer;
    /*min-height: 300px;*/
  }

  #trello-dialog a.cmd {
    text-decoration: underline;
    color: #44546f !important;
  }

  #trello-dialog .modal-content {
    border-radius: 12px;
  }

.attachment-thumbnail-preview {
    background-color: var(--ds-background-neutral, #091e420f);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 3px;
    height: 80px;
    left: 0;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: 50%;
    width: 100%;
    z-index: 1;
}

  .attachment-thumbnail-preview-ext {
    display: block;
    font-size: 18px;
    font-weight: 700;
    height: 100%;
    line-height: 80px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}