body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #343a40;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.container2 {
    max-width: 90%;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}


h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #495057;
}

label {
    font-weight: normal;
    display: block;
    margin-bottom: 5px; /* Reduced spacing */
    text-align: left;
}

input[type="email"], input[type="text"], input[type="tel"] {
    width: calc(100% - 24px); /* Ensures input fits inside container */
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1em;
}

input[type="text"][name="postal"] {
    width: 100px; /* Fixed width to match exactly 5 characters */
    text-align: center; /* Center align text */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1em;
}

input[type="password"] {
    width: calc(48% - 12px); /* Adjusted to fit inside container */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1em;
}

input[type="date"] {
    width: calc(60% - 12px); /* Adjusted to fit inside container */
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1em;
}

button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: normal;
    
}

a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

.success-message {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
}

form {
    text-align: left;
    margin-top: 20px;
}

header {
    background-color: #ab2784;
    color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Specific style for client panel header */
.client-panel header {
    background-color: #189aaf;
}

/* Styles for client panel table */
.client-panel table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.client-panel table thead {
    background-color: #189aaf;
    color: #ffffff;
}

.client-panel table th, .client-panel table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.client-panel table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.client-panel table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.client-panel table tbody tr:hover {
    background-color: #e6f7ff;
    cursor: pointer;
}

.client-panel table th {
    text-transform: uppercase;
    font-size: 0.9em;
}

.client-panel table td {
    font-size: 0.95em;
}

header p {
    margin: 0;
    font-size: 1.1em;
    flex: 1;
    text-align: left;
}

header h1 {
    font-size: 1.5em;
    flex: 2;
    text-align: center;
    margin: 0;
}

header a {
    color: #ffc107;
    margin-left: 15px;
    font-weight: normal;
    flex: 1;
    text-align: right;
}

header a:hover {
    text-decoration: underline;
}
#dashboard-title {
    display: flex;
    justify-content: center;
         text-align: center;
    /* Додатковий фон, якщо потрібно background-color: #f8f9fa; */

}


/* Загальний стиль для секцій */
section {
    margin: 20px auto;
    max-width: 800px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: height 0.3s ease;
}

/* Заголовки секцій */
section > h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 20px;
    margin: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ccc;
    font-size: 1.5em;
    color: #495057;
}

/* Плюс/мінус */
section > h2::before {
    content: '+';
    font-size: 1.5em;
    margin-right: 10px;
    color: #007bff;
    transition: transform 0.3s ease;
}

/* Мінус при розкритті */
section.open > h2::before {
    content: '-';
    transform: rotate(180deg);
}

/* Сховані секції */
section .content {
    display: none;
    padding: 20px;
}

/* Відображення секцій */
section.open .content {
    display: block;
}


/* Центрування таблиці в секціях */
section table {
    margin: 20px auto;
    width: 90%;
    border-collapse: collapse;
}

/* Стовпчики таблиці */
section table th, section table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

/* Кнопка "Save Changes" */
section button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px; /* Відступи навколо кнопки */
    float: right;
    width: 150px; /* Фіксована ширина для компактного вигляду */
}

/* Hover-ефект для кнопки */
section button:hover {
    background-color: #0056b3;
}

<!-- Стилі для s_users -->

.s_users {
    margin: 20px auto;
    max-width: 90%;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.s_users > h2 {
    padding: 10px 20px;
	text-align: center;
    margin: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ccc;
    font-size: 1.5em;
    color: #495057;
}

.s_users .content {
    padding: 20px;
}

.s_users table {
    margin: 20px auto;
    width: 90%;
    border-collapse: collapse;
}

.s_users table th, .s_users table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.s_users button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px;
    float: right;
    width: 150px;
}

.s_users button:hover {
    background-color: #0056b3;
}

#task_description {
    width: 100%; /* Максимальна ширина */
   /* Висота 10% від висоти вікна height: 10vh;  */
    padding: 10px; /* Відступи всередині */
    border: 1px solid #ced4da; /* Стиль рамки */
    border-radius: 4px; /* Закруглені кути */
   /* Розмір тексту  font-size: 1.1em; */
  
    box-sizing: border-box; /* Врахування падінгів у ширині */
	
	min-height: 120px;
   resize: vertical;
           
    box-sizing: border-box;
    
    font-family: Arial, sans-serif;
    font-size: 14px;
	
}


/* Styles for form */
.form-container {
    width: 45%;
    margin: 20px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-container form {
    display: flex;
    flex-direction: column;
}

.form-container label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-container input, .form-container textarea, .form-container select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1em;
}

.form-container button {
    width: auto;
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-end;
}

.form-container button:hover {
    background-color: #0056b3;
}



/* Styles for admin panel table */
.admin-panel table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    table-layout: auto;
}

.admin-panel table thead {
    background-color: #343a40;
    color: #ffffff;
}

.admin-panel table th,
.admin-panel table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #444;
    vertical-align: top;
}

.admin-panel table th {
    text-transform: uppercase;
    font-size: 0.9em;
}

.admin-panel table td {
    font-size: 0.95em;
    color: #212529;
}

/* Чередование строк */
.admin-panel table tbody tr:nth-child(odd) {
    background-color: #f5f5f5;
}

.admin-panel table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.admin-panel table tbody tr:hover {
    background-color: #d3e2f1;
    cursor: pointer;
}

/* Узкая колонка для RN */
.admin-panel table th:nth-child(2), /* Request Number */
.admin-panel table td:nth-child(2) {
    width: 6%; /* Фиксированная меньшая ширина */
    white-space: normal; /* Разрешить перенос текста */
    word-wrap: break-word; /* Разбивать слова для длинного текста */
    overflow-wrap: anywhere; /* Переносить текст при необходимости */
    text-align: center; /* Центрируем текст */
}

/* Остальные настройки для таблицы */
.admin-panel table th:nth-child(3), /* Description */
.admin-panel table td:nth-child(3),
.admin-panel table th:nth-child(4), /* Address */
.admin-panel table td:nth-child(4) {
    width: auto; /* Остальная ширина таблицы */
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
    max-height: calc(2 * 1.4em);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



.view-task {
    margin: 20px auto;
    max-width: 800px;
    font-family: Arial, sans-serif;
}

.view-task header {
    text-align: center;
    margin-bottom: 20px;
}

.view-task h1 {
    font-size: 24px;
    margin-bottom: 10px;
	color: #fff;
}

.view-task header em {
    font-style: italic;
    font-size: 0.9em;
    color: #fff;
    float: right;
}

.view-task section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.view-task h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.view-task p {
    margin: 5px 0;
}

.view-task textarea {
    width: 97%;
    height: 80px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
}

.view-task button {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.view-task button:hover {
    background: #0056b3;
}

.view-task .comments {
    margin-top: 20px;
}

.view-task .comment {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.view-task .comment.client {
    background-color: #d1f7f7;
    border: 1px solid #b2eded;
}

.view-task .comment.handyman {
    background-color: #e4d4f7;
    border: 1px solid #d1b9f2;
}

.view-task .comment.admin {
    background-color: #f7d4d4;
    border: 1px solid #f2b9b9;
}

.view-task small {
    font-size: 0.8em;
    color: #666;
    display: block;
    margin-top: 5px;
}

/* Status-specific styles */
.status-new {
    background-color: #d1f7d1; /* Light green */
    color: #256029;
}

.status-in-progress {
    background-color: #9c1eca; /* Light blue */
    color: #1c6e9c;
}

.status-no-contact {
    background-color: #f7d1d1; /* Light red */
    color: #9c1c1c;
}

.status-paused {
    background-color: #f7f7d1; /* Light yellow */
    color: #9c9c1c;
}

.status-in-execution {
    background-color: #e7d1f7; /* Light purple */
    color: #6e1c9c;
}

.status-canceled {
    background-color: #f3f3f3; /* Light pink */
    color: #9c1c6e;
}

.status-completed {
    background-color: #f3f3f3; /* Light cyan */
    color: #1c9c9c;
}

.status-awaiting-approval {
    background-color: #f7e4d1; /* Light orange */
    color: #9c4b1c;
}

.status-pending-materials {
    background-color: #d1d9f7; /* Light lavender */
    color: #1c3f9c;
}

.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-dropdown .dropdown-toggle {
    background: none;
    border: none;
    font-size: 1em;
    cursor: pointer;
    color: #007bff;
}

.filter-options {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
    z-index: 1000;
}

.filter-dropdown.active .filter-options {
    display: block;
}

.filter-options form {
    margin: 0;
}

.filter-options label {
    display: block;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.filter-options button {
    margin-top: 10px;
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}

/* Стили для зоны комментариев */
.comments-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.comments-section h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.comment-input {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.comment-input textarea {
    resize: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    height: 80px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.comment-input button {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    align-self: flex-start;
}

.comment-input button:hover {
    background-color: #0056b3;
}

.comment {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.comment .avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #ddd;
    border-radius: 50%;
    margin-right: 15px;
}

.comment .content {
    flex-grow: 1;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.95em;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.comment .content::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 10px 5px 0;
    border-color: transparent #f1f1f1 transparent transparent;
}

.comment .content p {
    margin: 0;
}

.comment .content .timestamp {
    font-size: 0.8em;
    color: #777;
    margin-top: 5px;
    text-align: right;
}



.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

.pay-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.pay-btn:hover {
    background-color: #218838;
}



/* Стилі для модалки */
#handymanRequestsModal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  padding-top: 80px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.4);
}

#handymanRequestsModal .modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

#handymanRequestsModal .close {
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

#handymanRequestsList {
  max-height: 400px;
  overflow-y: auto;
  margin-top: 20px;
}
#handymanRequestsList div {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}


/*
.top-icons-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  padding: 10px 0;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  transition: transform 0.2s, color 0.2s;
}

.icon-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 5px;
}

.icon-link:hover {
  transform: translateY(-5px);
  color: #007bff;
}

.icon-link.active {
  color: #007bff;
  font-weight: bold;
}

.icon-link.active img {
  filter: drop-shadow(0 0 5px #007bff);
}

.icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
}
*/
/* Верхня панель */

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f3f5;
  width: 100%;
  padding: 10px 10px; /* зменшити падінги */
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
margin-bottom: 30px;
}


/* обгортка навігації */
.nav-wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

/* самі іконки */
.top-icons-bar {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* іконка */
.icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  position: relative;
  transition: color 0.2s ease;
}

.icon-link:hover {
  color: #007bff;
}

.icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* кількість */
.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
}

/* текст під іконкою */
.icon-link span {
  margin-top: 4px;
}

/* профіль юзера */
.user-profile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-info {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  color: #333;
}

.user-info img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info span {
  font-size: 14px;
}

.user-menu {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
  border-radius: 5px;
  overflow: hidden;
  min-width: 140px;
  z-index: 1001;
}

.user-menu a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.user-menu a:hover {
  background-color: #f1f3f5;
}

/* показувати меню */
.user-profile.open .user-menu {
  display: block;
}
/* підсвітка меню */
.icon-link.active {
  position: relative;
  color: #333;
  font-weight: bold;
}

.icon-link.active::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #e0f0ff;
  border-radius: 50%;
  z-index: -1;
}




/* Стилі сетінгс */
.s_settings {
    margin: 20px auto;
    max-width: 900px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}

.page-title {
    text-align: center;
    font-size: 1.8em;
    margin: 20px 0;
    color: #495057;
}

.settings-block {
    margin-bottom: 30px;
}

.settings-block h2 {
    background-color: #f8f9fa;
    padding: 10px 20px;
    font-size: 1.5em;
    cursor: pointer;
    margin: 0;
    border-bottom: 1px solid #ccc;
}

.settings-block h2::before {
    content: '+';
    margin-right: 10px;
    color: #007bff;
    transition: transform 0.3s ease;
}

.settings-block.open h2::before {
    content: '-';
}

.settings-block .content {
    display: none;
    padding: 20px;
}

.settings-block.open .content {
    display: block;
}

.settings-block table {
    width: 100%;
    border-collapse: collapse;
}

.settings-block table th, 
.settings-block table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.settings-block button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    float: right;
    margin-top: 10px;
}

.settings-block button:hover {
    background-color: #0056b3;
}


.s_properties {
  margin: 20px auto;
  max-width: 1000px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.s_properties table {
  width: 100%;
  border-collapse: collapse;
}

.s_properties table th,
.s_properties table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

.s_properties button {
  margin-top: 15px;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 0.9em;
  cursor: pointer;
}

.s_properties button:hover {
  background-color: #0056b3;
}

.add-property-btn {
    text-align: center;
    margin: 20px 0;
}

.btn-add {
    display: inline-block;
    background-color: #28a745;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-add:hover {
    background-color: #218838;
    text-decoration: none;
}

@media (max-width: 968px) {
  .top-bar {
	  width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 10px;
  }

  .top-icons-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
  }

  .icon-link {
    font-size: 10px;
  }

  .icon-wrapper {
    width: 32px;
    height: 32px;
  }

  .icon-wrapper img {
    width: 100%;
    height: 100%;
  }

  .badge {
    top: -4px;
    right: -4px;
    font-size: 8px;
    padding: 2px 5px;
  }

  .user-profile {
    margin-top: 10px;
    justify-content: center;
  }

  .user-info span {
    font-size: 12px;
  }

  .user-info img {
    width: 28px;
    height: 28px;
  }
}



/* ССтилі map */
 .filter-form {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .filter-form label {
    margin-right: 10px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
  }

  .filter-form .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }

  .filter-form .checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
  }

  .filter-form select {
    padding: 6px;
    margin-right: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }

  .filter-form button {
    padding: 6px 12px;
    border: none;
    background: #007BFF;
    color: white;
    border-radius: 4px;
    cursor: pointer;
  }

  .task-table {
    width: 100%;
    max-width: 1000px;
	margin-top: 30px;
  }

  .task-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .task-table th, .task-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
  }

  .task-table th {
    background-color: #f2f2f2;
  }

  .task-table td:nth-child(2) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

.description-cell {
  max-width: 250px;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;
  height: 1.2em;
}


.task-table td.status-cell {
  white-space: nowrap;
}

.map-content {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
