/*!******************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles.css ***!
  \******************************************************************/
/* Основные стили */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background: linear-gradient(180deg, #000000 0%, #330000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    height: 30px;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.icon {
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.content {
    flex: 1;
    width: calc(100% - 48px); /* отступы по 24px с каждой стороны */
    max-width: 400px;
    padding: 20px;
    overflow-y: auto;
}

h1 {
    font-size: 24px;
    margin: 0 0 15px 0;
}

.task-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.task-item h3 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.task-item p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-item .task-date {
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.task-item .task-date i {
    font-size: 14px;
}

/* Стили для модального окна */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 60px;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%); /* Сдвигаем окно на 60% вверх */
    background-color: #333;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    border-radius: 10px;
    color: #fff;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.button {
    background-color: #444;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}

.button:hover {
    background-color: #555;
}

.add-task-button {
    background-color: #444;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-input,
.task-description {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #888;
    border-radius: 5px;
    background-color: #444;
    color: white;
}

.bottom-nav {
    display: flex;
    margin-bottom: 20px;
    gap: 27px;
}

/* Стили для нижнего меню */
.bottom-nav_item {
    width: 87px;
    padding: 10px 5px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
}

.bottom-icon {
    width: 23px;
    height: 23px;
}

/* Активный таб */
.bottom-nav_item.active {
    background: rgba(255, 255, 255, 0.3);
}

.container {
    min-width: calc(100% - 48px);
}

.header-user-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

#username {
    color: white;
    font-size: 16px;
}

/* Стили для контейнера проектов */
.project-header{
    display: flex;
    justify-content: space-evenly;
}
.project-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Стили для контейнера проектов */
.project-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Стили для элемента проекта */
.project-item {
    background-color: rgba(44, 44, 46, 0.56);
    color: white;
    border-radius: 20px;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Стили для иконки редактирования */
.project-edit-icon {
    cursor: pointer;
    background-color: rgba(18, 17, 17, 0.36);
    border: none;
    border-radius: 50px;
    padding: 10px;
    color: #a1a1a3;
}

.project-edit-icon:hover {
    color: #ffffff;
}

/* Общие стили кнопок */
.button {
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #4a4a4e;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #5a5a5e;
}


.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

