body {
  width: 100%;
  background: rgb(226, 224, 252);

}

.TCS.L-fileOrganization_header-container {
  color: rgb(82, 80, 88);
  text-shadow: 2px 3px 3px rgba(0, 0, 0, .85);
  font-size: 2.0em;
  text-align:center;
  
}

.TCS.L-fileOrganization_main-container {
  display: grid;
  grid-gap:10px;
  grid-row-gap: 10px;
  grid-template-columns: repeat(auto-fill, 100px ) ;
  margin-left: 5px;
  margin-right: 5px;
  
}

h2 {
  color: rgba(13, 13, 13, 1);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .85);
  font-size: 1.5em;
  text-align: center;
}
/* ---------------- Ideas Container Section ------------------- */
.TCS.L-fileOrganization_ideas-container {
  background: white;
  grid-column: 13/18;
  border: 1px solid rgb(0,0,0);
  box-shadow: 2px 2px rgba(13, 13, 13, 0.85);
  border-radius: 5px;
  display: grid;
  grid-gap: 5px;
  grid-row-gap: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.TCS.L-fileOrganization_ideas-container h2 {
  grid-column: 6/8;
}

.TCS.C-fileOrganization_ideas  {
  border: 2px solid rgb(25, 25, 30);
  border-radius: 2px;
  background:rgb(228, 222, 250);
  padding-left: 5px;
  word-wrap: normal;
}

.idea1 {
  grid-column: 1/4;
  grid-row: 2;
}

.idea2 {
  grid-column: 4/8;
  grid-row: 2;
}

.idea3 {
  grid-column: 8/12;
  grid-row: 2;
}

.TCS.C-fileOrganization_issues {
  grid-column: 1/12;
  grid-row: 4;
  border: 1px solid rgb(0,0,0);
  box-shadow: 2px 2px rgba(13, 13, 13, 0.85);
  border-radius: 5px;
  margin-bottom: 5px;
}

/*-------- File Container ---------------------------*/
.TCS.L-fileOrganization_files-container {
  background: white;
  grid-column: 1/18;
  grid-row: 3;
  border: 1px solid rgb(0,0,0);
  box-shadow: 2px 2px rgba(13, 13, 13, 0.85);
  border-radius: 5px;
}

.TCS.C-fileOrganization_table {
  margin: auto;
  border-collapse: collapse;
  width: 95%;
  border: 1px solid rgb(25, 25, 30);
  margin-bottom: 5px;
  
}

/*----------------File Folder Containers -------------------*/
.TCS.C-fileOrganization_fileFolders {
  background: white;
  border: 1px solid rgb(0,0,0);
  box-shadow: 2px 2px rgba(13, 13, 13, 0.85);
  border-radius: 5px;
}

.currentFolders {
  grid-column: 1/7;
  grid-row: 1;
}

.draftFolders {
  grid-column: 7/13;
  grid-row: 1;
}

.TCS.C-fileOrganization_folder-widget {
  height: 40rem;
  max-height: 100%;  
  padding: 2px;
  overflow: scroll;
  background: rgb(255, 255, 255);
  box-shadow: 0 1px 2px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.25);  
}

.TCS.C-fileOrganization_toolbar {
  margin-bottom: 10px;
  border: 1px solid black;
  height: fit-content;
  text-align: left; 
  padding: 0.1rem .5rem 0;
}

select {
  margin-top: 7px;
  width: 15em;
}

input[type=image] {
  margin-right:25px;
  margin-top:7px;
}


#filterInput {
  width: 95%;
}

.folder-container {
  margin-left:.5em;
  margin-right:.25em;
  padding-left:.5em;
  padding-right:.25em;
}

.folder-wrapper {
  padding: 0;
  list-style-type: none;
  margin-left: -20px !important;
  margin-left: -8px !important;
  width:100%;
}

/* ----------------F O L D E R   S T Y L E S -----------------*/
.TCS.C-fileOrganization > .upload-error {
    font-weight: 800;
    color: rgba(200, 0, 0, 1);

}

.TCS.C-fileOrganization > .base64-data{
    margin-left: 2.5%;
    width:95%;
    height: fit-content;
    background: rgba(150, 150, 150, .4);
    word-wrap: break-word;



}

.TCS.C-fileOrganization > .folder-open {

}

.TCS.C-fileOrganization > .folder-closed {

}

.TCS.C-fileOrganization > .file-type--word-doc {

}

.TCS.C-fileOrganization > .file-type--text-doc {

}

.TCS.C-fileOrganization > .file-type--pdf-doc {

}

.TCS.C-fileOrganization > .file-type--source-code-doc {

}

.TCS.C-fileOrganization > .file-type--image {

}






/* --------------Table styles --------------------- */
thead {
  background: rgb(25, 25, 30);
  color: rgb(220, 218, 228);
}
th {
  height: 25px;
  text-align: left;
  padding-left: 5px;
  border: 1px solid rgb(220,218,228);
}

tr,td {
  border: 1px solid rgb(25, 25, 30);
  padding-left: 5px;
}

tbody tr:nth-child(even) {
  background: rgba(126, 126, 128, 0.5);
}


/*--------------Media Queries ----------------------*/
@media only screen and (max-width: 1120px) {
  .TCS.L-fileOrganization_ideas-container {
  grid-column: 1/6;
  grid-row: 3;
  }

  .TCS.L-fileOrganization_files-container {
    grid-column: 6/12;
    grid-row: 3;
  }

  .currentFolders {
    grid-column: 1/6;
    grid-row: 1;
  }

  .draftFolders {
  grid-column: 6/12;
  grid-row: 1;
  }

}


@media only screen and (max-width: 1020px) {
  .TCS.L-fileOrganization_main-container {
    display:block;
  }

  .TCS.L-fileOrganization_header-container {
    font-size:1.5em;
  }
}
