.jumbo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  text-align: center;
  text-wrap: balance;
  padding: 0 200px;
}
.jumbo h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.jumbo p {
  font-size: 1.25rem;
  color: grey;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .jumbo {
    padding: 0 2rem;
  }
}

.projectsMainContainer {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 0 20px;
  gap: 20px;
}
@media (max-width: 1000px) {
  .projectsMainContainer {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.projectsTable {
  border-collapse: collapse;
  color: #222;
  font-size: 1rem;
  width: 100%;
}
.projectsTable th,
.projectsTable td {
  padding: 0.75em 1em;
  text-align: left;
  border-bottom: 1px solid #e3e3e3;
}
.projectsTable th {
  background: #f8f9fa;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.projectsTable tr {
  transition: background 0.2s;
}
.projectsTable tr:hover {
  background: #f8f9fa;
}
.projectsTable tbody tr:last-child td {
  border-bottom: none;
}
.projectsTable {
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.projectsTable thead {
  border-bottom: 2px solid #dee2e6;
}

.newProjectForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.account_options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.option__card {
  width: 30%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.option__card input[type=radio] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.option__card:has(input[type=radio]:checked) {
  border-color: #8e44ad;
}

.planDescriptionContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 10px;
  height: 100px;
  padding: 10px;
}

.projectContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.addMemberSection {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.addMemberSection form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1000px) {
  .addMemberSection {
    width: 100%;
  }
}

.addKeySection {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.addKeySection form {
  width: 100%;
}
.addKeySection form button {
  width: 100%;
}
@media (max-width: 1000px) {
  .addKeySection {
    width: 100%;
  }
}

.projectListSection {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-x: auto;
}
@media (max-width: 1000px) {
  .projectListSection {
    width: 100%;
  }
}

.newProjectSection {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1000px) {
  .newProjectSection {
    width: 100%;
  }
}

.dashboard__project__section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1000px) {
  .dashboard__project__section {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.dashboard__project__card {
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.dashboard__project__card a {
  font-size: 1.25rem;
  color: #8e44ad;
  text-decoration: underline;
  font-weight: 200;
}
.dashboard__project__card div {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1000px) {
  .dashboard__project__card {
    width: 100%;
  }
}

.logs__container {
  padding: 0px 200px;
}
@media (max-width: 1000px) {
  .logs__container {
    padding: 0px 20px;
  }
}

.logs__card {
  width: 60%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 30px;
}
.logs__card h1 {
  color: #8e44ad;
}
@media (max-width: 1000px) {
  .logs__card {
    width: 100%;
  }
}

.loginForm {
  display: flex;
  gap: 20px;
}
@media (max-width: 1000px) {
  .loginForm {
    width: 100%;
    flex-direction: column;
  }
}

.docsContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-left: 100px;
  padding-right: 100px;
}
@media (max-width: 1000px) {
  .docsContainer {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.docs_container {
  line-height: 1.6;
  font-size: 1.25rem;
  color: #222;
}
.docs_container h1 {
  border-bottom: 2px solid #8e44ad;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.doc_section {
  margin-bottom: 20px;
}

.doc_note {
  background-color: #f8f9fa;
  border-left: 4px solid #8e44ad;
  padding: 15px;
  margin: 15px 0;
  border-radius: 0 4px 4px 0;
}

.layout__container {
  display: flex;
  position: relative;
}

.nav__sidebar__container {
  width: 50px;
  border-right: 1px solid #ccc;
  height: 100vh;
  padding-top: 56px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: sticky;
  top: 0;
  left: 0;
}
.nav__sidebar__container a:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 1000px) {
  .nav__sidebar__container {
    display: none;
  }
}

.nav__main__container {
  width: 100%;
}

.small_links_container {
  display: flex;
  flex-direction: column;
  gap: 10;
}

.notification__card {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.notification__card h1 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #222222;
}
.notification__card p {
  margin: 0 0 16px 0;
  color: #222222;
  line-height: 1.5;
}

.notifications_section {
  padding: 0 150px;
}
.notifications_section .notifications__btn_container {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 1000px) {
  .notifications_section {
    padding: 0 50px;
  }
}

/*# sourceMappingURL=containers.css.map */
