/** Change width of content on pages */
:root {
       --ls-main-content-max-width: 1200px;
       --ls-main-content-max-width-wide: 100%;
}
/** Title */
/* Make title non-editable 
#main-container .page-title {
  pointer-events: none; } */
/** Hide useless sidebar stuff */
.flashcards-nav {
  display: none;
}
.cp__sidebar-help-btn {
  display: none;
}
/** Hide recent pages (seems to be ineffective on web)*/
.nav-content-item.recent {
  display: none; }
/** All pages */
/* Hide selection checkbox (nothing can be done with it) */
.cp__all_pages table .selector {
  display: none; }
/* Hide more columns (not that they don't work, they just don't seem very useful) */
.cp__all_pages table .backlinks {
  display: none; }
.cp__all_pages table .created-at {
  display: none; }
/* Hide delete button */
.cp__all_pages .actions .actions-wrap {
  display: none; }
/* Hide more page modification options/things that don't work */
.cp__all_pages .actions div.r {
  display: none; }
/** Image */
/* Remove delete button */
a.delete { display: none; }
/* Disable resizing
.resize { resize:none; } */

/* CSS Block Test 
Gap keeps them apart horizontally. Width attempts to use the entire space horizontally. Align-items and justify content center keeps it centered*/
.zcardz {
	display: flex;
  	gap: 2rem;
  	width: 100%;
	height: 80%;
    flex-grow: 1;
    align-items: center;
	justify-content: center;
}
.tcardz:hover {
background: #EDEDED;
transition: all 0.5s ease-in;
}
.tcardz {
  border: 0.05em solid #023643;
  border-radius: 15px;
  padding: 0px;
  width: 225px;
}
/* Testing Image Columns */
.zcolumns {
 	display: flex;
  	gap: 2rem;
	flex-grow: 1;
	flex-shrink: 1;
	transition: all 0.1s ease-out;
}
.tcolumn:hover {
background: #EDEDED;
}
.tcolumn {
  border-radius: 15px;
}
@media (max-width: 650px) {
	.zcardz	{
			flex-direction: column;
		}
}
@media (max-width: 650px) {
	.tcardz {
			width: 80%;
			padding-left: 0px;
			margin-left: auto;
			margin-right: auto;
	}
}
.buthead {
    display: flex;
    justify-content: space-around;
  }
  
  .button1 {
    display: inline-block;
    padding: 5px;
    border: 0.10em solid #023643;
    border-radius: 15px 15px;
    color: #696969;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px; 
    font-family:'Roboto',sans-serif;
    font-weight: 400;
    margin: 4px 2px;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
  }
  .button1:hover {
    color: white;
    border-color: #002B36;
    background: #023643;
    transition: all 0.01s ease-in;
  }
  @media (max-width: 650px) {
      .buthead	{
              flex-direction: column;
          }
  }
