:root {
  --color-white: #ffffff;
  --color-light-yellow: #fdfce5;
  --color-light-sand: #f9f3df;
  --color-yellow: #f4d19b;
  --color-bookmark-shadow: #ced2d8;
  --color-bookmars-background: #f8f9fa;
  --color-cancel-btn: #ff5c58;
  --color-submit-btn: #42b8dd;
  --colorOne: #48b2e7;
  --colorTwo: #add8e6;
  --colorThree: #f7e590;
}

body {
  font-family: sans-serif;
}

a {
  text-decoration: none;
}

label {
  display: block;
}

nav a {
  display: inline-block;
  margin: 1em;
}

form div {
  display: inline-block
}


.app-container {
  width: 100%;
  height: 100%;
  margin-top: 100px;
}
/* -------------------------------------- TOP-BAR-------------------------- */
/* WRAPPER OF TOP-BAR(BOOKIT/METRICS/CREATE-BOOKMARK) */
.top-section--wrapper {
  display: flex;
  align-content: center;
  justify-content: space-between;
  background-color: var(--color-light-yellow);
  padding: 5px;
  margin: 5px;
  border-radius: 6px;

}
.bookmark--logo {
  flex: 20%;
  display: flex;
  align-items: center;
  padding: 10px;
}
.image-logo-top-section {
  border-radius: 25px;
}
/*------------------ TOP-BAR WITH BOOKIT/METRICS/CREATE-BOOKMARK/LOGOUT ------*/
.navbar {
  box-shadow: 5px 2px 5px var(--color-bookmark-shadow);
}

.top_navbar {
  flex: 80%;
  display: flex;
  justify-content: space-between;
}

.top-navbar-links {
  border: 2px solid var(--color-yellow);
  background-color: var(--color-yellow);
  color: var(--color-white);
  height: 50px;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
}
.logo-btn-navbar--link {
  margin: 25px;
  font-size: 18px;
}

/* ------------------------------- TAGs-FILTERS && USER ARTICLES ----------- */
/* CONTAINER WITH USER ARTICLES AND TAG FILTERS */
.no-articles--container {
  height: 300px;
}
.main-user-article--no-articles {
  text-align: center;
  font-size: 20px;
}
.no-articles--div {
  height: 715px;
  /* height: 100%; */
  margin: 5px;
  display: flex;
  border: 2px solid var(--color-light-yellow);
}

.main-user-article--container {
  min-height: 700px;
  display: flex;
}
/* LEFT SIDE OF USER ARTICLE CONTAINER WHICH IS TAG FILTER SIDE-BAR */
.left-side--user-article-container {
  height: 100%;
  /* flex: 15%; */
  padding: 5px;
}
/* RIGHT SIDE OF USER ARTICLE CONTAINER WHICH IS ALL USER ARTICLES */
.sidebar-tags-selector-div {
  text-align: center;
}
.right-side--user-article-container {
  height: 100%;
  flex: 80%;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  margin: 3px;
  /* background-color: var(--color-bookmars-background); */
}

/* The sidebar menu */
.sidebar {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 2; /* Stay on top */
  margin-top: 30px;
  left: 0;
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.25s; /* 0.5 second transition effect to slide in the sidebar */
}

.sidebar-header {
  text-align: center;
}

/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidebar .closebtn {
  position: relative;
  top: 0;
  text-align: right;
  font-size: 36px;
}

/* The button used to open the sidebar */
.filterbtn {
  font-size: 20px;
  cursor: pointer;
  color: darkgray;
  padding: 10px 15px;
  border:solid;
  border-color: lightgray;
  border-radius: 15px;
}

.filterbtn:hover {
  color: rgb(85, 84, 84);
  box-shadow: 1px 2px lightgray
}

#multiselect{
  border: 1px solid #364c63;
  border-radius: 4px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left  .25s; /* If you want a transition effect */
  padding: 20px;
}

/* ----------------------------------- TAG SELECTOR ---------------------- */
.tag-filter--form {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
  margin-left: 5px;
  z-index: 1;
}
.text--tag-filter--form {
  /* text-transform: uppercase; */
  font-size: 13px;
}

#filter-submit{
  margin-top: 1em;
}

/* --------------------------------------USER ARTICLES ----------------*/
.user-articles-total--username-div {
  display: flex;
  margin: 5px;
  padding-left: 5px;
  padding-right: 5px;
  justify-content: space-between;
}
.display-articles--container {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
  min-height: 500px;
}

.user-articles--display-view {
  border: 2px solid black;
  color: black;
  width: 120px;
  margin: 5px;
}

.user-articles--share-list {
  border: 2px solid black;
  color: black;
  width: 120px;
  margin: 5px;
}

.footer-btns--main-user-article--container {
  margin: 10px;
  display: flex;
  align-self: stretch;
  justify-content: space-between;
}

.show-table-view-btn {
  margin-right: 5px;
}

.pure-article-container{
  min-width: 200px
}


/* --------------------------------------SINGLE ARTICLE ----------------*/
.single-article--container {
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 6px;
  margin: 10px;
  padding: 7px;
  box-shadow: 5px 10px 8px var(--color-bookmark-shadow);
  background-color: var(--color-white);
  height: 390px;
}

.single-article--container:hover .delete-btn--single-article, 
.delete-btn--single-article:hover{
  display: inline-block
}

.single-article--container:hover .edit-btn--single-article, 
.edit-btn--single-article:hover{
  display: inline-block
}


.single-article-metadata-container{
  max-width: 90%;
}

.single-article-metadata-container a{
  text-decoration: none;
  color: black
}

.single-article-metadata-img{
  max-width: 100%
}

.single-article-buttons-container{
min-height: 25px
}

.article-name--single-article {
  /* color: rgb(87, 87, 87); */
  color: var(--color-submit-btn);
  font-style: italic;
}

.single-article-tags-container{
display:flex;
flex-flow: row wrap
}

.single-article-tag-style span{
  background-color:rgb(82, 82, 207);
  color: white;
  padding: 5px;
  border-radius: 10px;
  font-size: small;
  margin: 2px

}

.title-delete--single-article--container,
.footer--single-article--container {
  position: relative;
}

.delete-btn--single-article {
  color: grey;
  font-size: 11px;
  text-transform: uppercase;
  display: none
}

.edit-btn--single-article {
  color: grey;
  font-size: 11px;
  text-transform: uppercase;
  display: none
}
.read-btn--single-article {
  position: absolute;
  bottom: 0px;
  right: 0px;
  font-size: large}

.read-btn-text{
  color: grey;
  font-size: 11px; 
}

.read-btn-true {
  color:lightblue;
}
.read-btn-false {
  color: grey;
}

/* ------------------------------ BTNS ------------------------------------- */
.tabViewButton,
.shareButton {
  background-color: #f4d19b;
}

/* ----------------------------------LOGOUT -------------------------------- */
.log-out-btn-container {
  display: flex;
  justify-content: center;
  align-self: center;
}
.log-out-btn {
  /* border: 2px solid black; */
  background-color: #f9f3df;
  border-radius: 5px;
  height: 40px;
}
/* ----------------------------------TABLE VIEW -------------------------------- */

.table-header {
  display: flex;
  justify-content: center;
  align-self: center;
  align-items: center;
  font-size: 25px;
}

.table-container {
  justify-content: center;
  align-self: center;
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 1%;
  margin-bottom: 1%;
  /* padding: 10px; */
}

.table-btn-container {
  display: flex;
  justify-content: space-between;
  align-self: center;
  margin: 3%;
}
.table-btn {
  color: var(--color-white);
  background-color: var(--color-submit-btn);
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 3px;

  /* display: flex;
    padding-top: 17px;
    padding-right: 30px;
    padding-bottom: 19px;
    padding-left: 30px;
    font-size: 20px;
    line-height: 18px;
    color: #3a4246;
    background-color: #dafdff;
    border-radius: 5px;
    border: 1px solid black; */
}

.ag-theme-alpine {
  box-shadow: 6px 11px 9px var(--color-bookmark-shadow);
  border-radius: 6px;
}
/* ----------------------------------ADD MESSAGE VIEW -------------------------------- */
.top-sharing-link--container {
  height: 720px;
}
.main-add-msg-container {
  margin: 3px;
  border-radius: 5px;
  height: 720px;
  background-color: white;
}
.msg-header {
  display: flex;
  justify-content: center;
  align-self: center;
  align-items: center;
  font-size: 25px;
  padding-top: 3%;
  margin-top: 3rem;
}

.btns--sharing-link-container {
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30%;
}

.msg-input-container {
  margin: 20px;
  padding-top: 20px;
  display: flex;
  /* width: 100%; */
  height: 30%;
  align-self: center;
  align-items: center;
  justify-content: center;
}

.msg-input {
  /* flex: 1; */
  box-shadow: 5px 10px 8px var(--color-bookmark-shadow);
  display: block;
  border: 1px solid black;
  background-color: #f8f9fa !important;
  width: 30%;
  height: 100%;
  align-self: center;
  align-items: center;
  border-radius: 5px;
  justify-content: center;
}
.btns-container--main-add-msg-cntainer {
  height: 100px;
  margin-top: 50px;
  display: flex;
  align-self: stretch;
  justify-content: center;
}
.msg-add-btn-container {
  margin: 5px;
}
.msg-skip-btn-container {
  margin: 5px;
}

/* ----------------------------------GENERATE LINK VIEW -------------------------------- */

.link-generate-btn-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-self: center;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  margin: 5px;
  margin-top: 25px;
}

.link-generate-btn {
  display: flex;
  padding-top: 17px;
  padding-right: 30px;
  padding-bottom: 19px;
  padding-left: 30px;
  font-size: 20px;
  line-height: 18px;
  color: #3a4246;
  background-color: #f7e590;
  border-radius: 5px;
  border: 1px solid black;
}

.btns--sharing-link-container {
  height: 100px;
  margin-top: 50px;
  display: flex;
  align-self: stretch;
  justify-content: center;
}

.link-area {
  display: block;
  position: relative;
  width: 60%;
  margin: auto;
  text-align: center;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  font-size: 20px;
  align-self: center;
  align-items: center;
  justify-content: center;
  /* line-height: 18px; */
  color: #3a4246;
  background-color: #f8f9fa !important;
  border-radius: 5px;
  /* border: 1px solid black; */
  margin-top: 3%;
}

/* ----------------------------------VIEW SHARED ITEMS-------------------------------- */
.table-header {
  margin-top: 2rem;
}

.shared-msg-area {
  display: block;
  white-space: pre-wrap;
  position: relative;
  width: 50%;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 3rem;
  text-align: center;
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  padding-left: 30px;
  font-size: 20px;
  align-self: center;
  align-items: center;
  justify-content: center;
  color: #3a4246;
  background-color: #f8f9fa !important;
  border-radius: 5px;
}

.button-error,
.button-secondary,
.button-warning {
  color: var(--color-white);
  border-radius: 4px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  border-color: none;
}
.button-secondary {
  background: var(--color-submit-btn);
  text-transform: uppercase;
  font-size: 14px;
}

/* ------------------------ CREATE BOOKMARK  -------------------------------- */
.create-new-article-component {
  height: 720px;
  text-align: center;
}
.btns--create-new-article {
  margin: 4px;
}

.create-article-input-section{
  padding-bottom: 10px;
}
.create-article-tags-section{
  display:flex;
  flex-direction: column;
  padding-bottom: 10px;

}

/* ---------------- LOGIN SIGN-UP CONTAINER WHEN USER LOG-IN OR SIGN UP---- */
.login-page-container {
  border: 2px solid var(--color-light-sand);
  text-align: center;
  height: 720px;
  /* padding-bottom: 150px; */
}
.login-signup-container {
  background-color: var(--color-light-yellow);
  display: flex;
  justify-content: center;
  padding: 5px;
}
.login-signup-container--right {
  background-color: var(--color-yellow);
  border-radius: 5px;
  margin-left: 5px;
}
.login-signup-container--left {
  background-color: var(--color-yellow);
  border-radius: 5px;
}
.login-signup--link {
  text-transform: capitalize;
  color: white;
}
.login--form {
  padding-top: 70px;
}
/* -------------------------------------- FOOTER ----------------------------*/
.footer {
  position: relative;
  bottom: 0;
  left: 0;
  width:100%;
  margin: 0px 5px 0px 5px;
  padding: 1px 5px 0px 1px;
  background-color: var(--color-light-yellow);
}

/* -----DROPBOX----------- */
.css-1pcexqc-container {
  width: 280px;
}
/* .css-1pcexqc-container */
.css-1jllj6i-control {
  width: 200px;
  height: 50px;
}


/* ----------------------------------DATAVIZ -------------------------------- */

.data-viz-top-container{
  min-height: 500px;
  height: 100%;
  width: 100%;
  height: fit-content
}

.dvSectionHeader {
  display: flex;
  height: 70px;
  margin: 0;
  padding: 10;
  border-radius: 10px;
  align-self: flex-start;
}

.tab-content-row {
  display: flex;
  flex-direction: row ;
  justify-content: flex-start;
  padding-left: 5%;
  padding-bottom: 2%;
  padding-right: 5%;
}

.weekly-article-list-table{
  padding: 5px;
  display: block;
  overflow: auto;
  height: 200px;
  max-width: 40000px;
  border: 1px solid rgb(228, 228, 228);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  border-collapse: collapse;
  overflow-x: scroll;
}

.highlight {
  color: #48b2e7;
}

.articlerow {
  display: block;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 5px;
  border-top: 1px solid rgb(228, 228, 228);
}

.articledetails {
  display: flex;
  flex-direction: row;
}

.articledetails a:hover {
  /* width: 100%; */
  /* height: 100%; */
  display: block;
}

.table-article-titles{
  display:flex;
  flex-direction: column;
  padding-left: 3px;
}

.table-row-article-title-original{
  font-size: small;
}

#backlog{
  display: flex;
  flex-direction: row;
}

.backlog-plot-container{
  max-width: 50%;
  max-height: 30%
}
.backlog-tag-plot-container{
  height: 100%;
  width: 30%;
  max-width: 60%;

}

/* .tag-plot-container{
  width: 50%;
  height: 80%
} */

/* ----------------------------------MODAL FOR EDIT/DELETE BOOKMARKS-------------------------------- */

.modal_edit {
  position: fixed;
  z-index: 9999;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #f2f2f2;
  /* padding: 15px; */
  /* background: white; */
  outline: none;
  padding: 3.2rem;
  text-align: center;
  font-family: 'Vesper Libre bold';
  color: #364c63;
  font-size: large;
  border: 1px solid #364c63;
  border-radius: 4px;
  display: flex;
}

.modal_delete {
  position: fixed;
  z-index: 9999;
  top: 25%;
  left: 10%;
  right: 10%;
  bottom: 25%;
  background: white;
  outline: none;
  padding: 3.2rem;
  text-align: center;
  font-family: 'Vesper Libre bold';
  color: #364c63;
  font-size: large;
  border: 1px solid #364c63;
  border-radius: 4px;
}

.mySelect__value-container {
  height: 35px;
  position: relative;
}

.modal_edit form div {
  display: block;
  height: inherit;
  margin: 0 auto;
}

.modal__title {
  margin: 0 0 1.6rem 0;
}

.modal__body {
  font-size: 2rem;
  font-weight: 300;
  margin: 0 0 3.2rem 0;
  word-break: break-all;
}

* {box-sizing: border-box}

/* ----------------------------------DataViz 2-------------------------------- */

.user-metrics-container{
    display:flex;
    flex-direction: row;
    padding-right: 10%;
}

.tab {
    display: flex;
    flex-direction: column;
    float: left;
    padding-left: 5%;
    padding-top: 2%;
    /* border: 1px solid #ccc;
    background-color: #f1f1f1; */
    width: 18%;
    height: 100%;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 15px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */

.user-metrics-tab-content-container{
    display: flex;
    flex-direction: column;
    align-content:center;
    width: 90%;
    padding-left: 5%;
}

.tab-content{

}

.calendar-article-list-table{
  width:100%;
  border: none
  
}

.user-content-tags-container{
  max-width:50%;
  display: flex;
  flex-flow: row wrap;
}

#content-sub-header{
  color: grey
}

.user-content-tags-display{
  color: grey;

  border-style: solid;
  border-width: small;

  border-color: grey;
  border-radius: 10px;
  
  margin: 2px;
  padding: 3px
}

#plotly-tag-chart{
  width: '100%';
   height:'100%'
}


.user-content-container{
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: 100%;
  padding-top: 10px;
}

#reading-history-weekly{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

#week-v-last-indicator{
  padding-left: 15%;
}

#plotly-calendar{
  max-width: 1000px;
  min-width: 150px;
    /* height: 9vw; */
  overflow: scroll;
}

/* .user-content-publisher-display{
  display: flex;
  flex-direction: column;
} */

.subcategory-title{
  font-size: large;
}

/* #new-article-form{
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
} */