
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* background-color: #f4f4f7; */
    /* background-color: #ffffff; */
    background-image: url('/static/images/BackgroundDesign.png');
    background-size: cover;
    margin: 0;
    padding: 0;
  }
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    margin-bottom: 30px;
    padding: 50px;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  header h1 {
    font-size: 24px;
  }

  .main-logo {
    padding: 0px;
    margin: 0px;
    padding-right: 20px;
    width: 60px;
  }

  #website-name {
    margin: 0px;
    padding: 0px;
    height: 80px;
  }

  #project-management-title {
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: xx-large;
    color: white;
  }

  #profile-actions {
    display: flex;
    align-items: center;
  }

  #profile-picture {
    border: 5px solid #a0a0ff;
    border-radius: 15px;
    /* border-image: linear-gradient(to right, rgb(5, 224, 233), rgb(203, 108, 230), rgb(255, 87, 87)) 1; */
    max-width: 50px;
    margin: 15px;
    cursor: pointer;
  }

  #logout {
    color: #5050ff;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    cursor: pointer;
    opacity: 0;
    z-index: -1;
    transform: translateX(70px);
    transition: opacity 0.2s, transform 0.2s;
  }

  .shown {
    opacity: 1 !important;
    transform: none !important;
    z-index: 0 !important;
  }

  #create-file-button {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 15px;
    margin: 15px;
    margin-left: 100px;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  #create-file-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  #delete-file-button {
    background-color: #ffffff;
    color: #787878;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 15px;
    margin: 15px;
    margin-left: 0px;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  #delete-file-button.delete-active {
    background-color: #ff0000;
    border: 2px dotted black;
    padding: 13px;
    color: #ffffff;
    font-weight: 600;
  }

  #delete-file-button.delete-active:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .center-contents {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #ffffff00;
    border-radius: 15px;
    padding: 15px;
    height: 650px;
  }

  .docs-container {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
  }
  .doc {
    background-color: #f4f4f7;
    margin: 10px;
    padding: 20px;
    border: none;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100px;
    height: 100px;
  }
  .doc:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .doc img {
    width: 50px;
    height: 50px;
    margin: 10px;
    align-self: center;
  }
  .doc h3 {
    margin: 0;
    margin-top: 15px;
    font-size: 18px;
    color: #333;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: small;
    font-weight: 100;
  }
  a {
    text-decoration: none;

  }

/* Hide the native checkbox input */
.custom-checkbox input[type="checkbox"] {
  display: none;
}

/* Style the custom checkbox */
.custom-checkbox .checkbox {
  transform: translate(-65px, -15px);
  width: 20px;
  height: 20px;
  border: 1px none #aaa;
  border-radius: 3px;
  position: absolute;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox.visible {
  border: 1px solid #aaa;
}


.custom-checkbox .checkbox :hover {
  border: 1px solid #aaa;
}

/* Change the custom checkbox appearance when the checkbox is checked */
.custom-checkbox input[type="checkbox"]:checked + .checkbox {
  background-color: #77ffd4;
  border: 1px solid black;
  /* border-color: #000000; */
  width: 30px;
  height: 30px;
}

/* Add a checkmark inside the custom checkbox when checked */
.custom-checkbox input[type="checkbox"]:checked + .checkbox::before {
  content: '✔';
  position: absolute;
  top: 5px;
  left: 10px;
  color: rgb(0, 0, 0);
  font-size: 14px;
}

@media screen and (max-width: 430px) {
  .docs-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}