

/*@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");*/

:root {
    font-family: "Roboto", sans-serif;
    --main-color: #ccffcc;
}

.table {
    max-width: 1000px;
    padding: 10px;
    border-spacing: 0 10px;
}

.admin-table {
    max-width: 1000px;
}

th,
td {
    padding: 5px;
    border: 1px solid black;
    border-collapse: collapse;
}

th,
href {
    background: var(--main-color);
}

/*th:first-child, href {
    background: #ffffff;
}*/

button {
    background: #ffffff;
    border: 1px solid black;
}

nav {
    background-color: var(--main-color);
    text-align: right;
    padding: 10px 20px;
}

    nav a {
        color: black;
        text-decoration: none;
        margin-left: 10px;
        margin-right: 10px;
        position: relative;
    }

        nav a::after {
            content: "|";
            position: absolute;
            top: 50%;
            right: -10px;
            transform: translateY(-50%);
        }

        nav a:last-child::after {
            display: none;
        }

#group_row {
    background-color: var(--main-color);
}


.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 36px;
}


.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  margin: 10px;
  position:relative;
}
login-error{
    display:flex;
    position:relative;
    color:red;
    font-size:24px;
}
.input-container {
    position:relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  
  font-size: 28px;
  width: 100%;
}

.input-container__input {
  height: 35px;
  font-size: 28px;
}
.input-container__label {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.login-text {
    margin-bottom: 5px;
}

.login_button {
  margin-top: 50px;
  width: fit-content;
  padding: 2px 5px;
  font-size: 24px;
  width: 240px;
}

.password-checkbox {
  cursor: pointer;
  position: relative;
  transform: scale(2);
  margin-right: 25px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
  color: #777;
}

.password-input {
    position: relative;
}

.input-container label {
    display: flex;
    flex-direction: row;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    max-width: 600px;
}

.close-modal,
.close-edit-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close-modal:hover,
    .close-edit-modal:hover,
    .close-modal:focus,
    .close-edit-modal:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.save-task-btn {
    margin-top: 20px;
    width: 100%;
}

.view-task-btn {
    height: 100%;
    width: 100%;
}

.edit-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 10px 0;
    width: 100%;
}

.edit-btn {
    margin: 5px;
    /* width: 200px; */
    width: fit-content;
    padding: 5px;
}

.edit-btn-a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.table-container {
    border-radius: 10px;
    border: 1px solid black;
    /* background-color: #eeecec; */
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: fit-content;
}

.container-white {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.edit-btn.active {
    background-color: var(--main-color);
    /* цвет для активной кнопки */
    color: white;
}
