/* Reset CSS */
@import url("./reset.css");

/* Fonts */
@import url("./fonts.css");

/* Grid System */
@import url("./grid.css");

/* Components */
@import url("./components.css");

/* Initialize Config */
@import url("./main.css");

/* Admin Panel */

textarea {
  resize: vertical;
}

* {
  line-height: 1.7rem;
}

.admin {
  margin-top: 20px;
}

.sidebar {
  background-color: var(--primary-600);
  color: var(--white);
  padding: 20px;
  border-radius: 16px;
  min-height: 600px;
}

.quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.quick__icon {
  width: 25px;
  height: 25px;
}

.quick__title {
  font-size: 22px;
  font-weight: 700;
}

.items__wrapper {
  margin-top: 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

.items {
}

.item {
  width: 100%;
  font-size: 18px;
}

.item__link {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 8px;
  width: 100%;
  border-radius: 8px;
  transition: all 200ms;
}

.item__link:hover,
.item__link--active {
  background-color: var(--white);
  color: var(--primary-600);
}

.users__wrapper {
}

.users {
}

.users__icon {
  width: 20px;
  height: 20px;
}

.forms__wrapper {
}

.forms {
}

.form__group label,
p {
  line-height: 1.7rem;
}

.forms__icon {
  width: 20px;
  height: 20px;
}

.main {
  height: 100%;
  border: 3px solid var(--primary-600);
  border-radius: 16px;
  padding: 20px 30px;
}

.main__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main__title {
  font-size: 20px;
  font-weight: 800;
}

.main__table {
  margin-top: 30px;
  overflow: auto;
}

.table {
  width: 100%;
  border: 1px solid var(--primary-600);
  border-radius: 8px;
  overflow: hidden;
  border-collapse: separate;
}

.terms {
  max-height: 150px;
  overflow-y: auto;
  margin: 10px 0;
}

.terms h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 8px 0;
}

thead {
}

th {
  padding: 18px;
  background-color: var(--primary-600);
  color: var(--white);
  text-align: right;
}

tr:nth-child(even) {
  background-color: #f0fdf4;
}

td {
  padding: 18px;
}

.options {
  display: flex;
  gap: 12px;
}

@media screen and (max-width: 470px) {
  .options {
    flex-direction: column;
  }
}

@media screen and (max-width: 370px) {
  .main__top {
    flex-direction: column;
    gap: 10px;
  }
}

.sidebar {
  display: none;
}

.mobile-menu__wrapper {
  display: flex;
  justify-content: center;
}

.mobile-menu__btn {
  background-color: var(--primary-600);
  color: var(--white);
  border-radius: 16px;
  padding: 8px;
}

.mobile-menu {
  background-color: var(--white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  right: -280px;
  height: 100%;
  width: 280px;
  padding: 20px;
  transition: all 200ms;
}

.mobile-menu--active {
  right: 0;
}

.mobile-menu__icon {
  width: 30px;
  height: 30px;
}

.mobile-menu__close {
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 576px) {

}

@media screen and (min-width: 992px) {
}

@media screen and (min-width: 1200px) {
  .sidebar {
    display: block;
  }

  .main__title {
    font-size: 30px;
  }

  .mobile-menu__wrapper {
    display: none;
  }
}

@media screen and (min-width: 1400px) {
}
