  @font-face {
    font-family: "General-Medium";
    src: url('/static/site_app/fonts/HelveticaNeue-Light.otf') format("truetype");
    
    /* Добавьте форматы шрифтов, которые вы загрузили */
  }

  @font-face {
    font-family: "General-Bold";
    src: url('/static/site_app/fonts/HelveticaNeue-Bold.otf') format("truetype");
    
    /* Добавьте форматы шрифтов, которые вы загрузили */
  }

  @font-face {
    font-family: "Evol-2";
    src: url('/static/site_app/fonts/Evolventa-Bold.ttf') format("truetype");
    
    /* Добавьте форматы шрифтов, которые вы загрузили */
  }

    @font-face {
    font-family: "Montserrat";
    src: url('/static/site_app/fonts/Montserrat-ExtraLight.ttf') format("truetype");
    
    /* Добавьте форматы шрифтов, которые вы загрузили */
  }

/* Устанавливаем body на 100% высоты viewport */
html, body {
    height: 100%;
    margin: 0;
}

/* 1. Общий Flex-контейнер для всего приложения */
body {
    display: flex;
    flex-direction: column; /* Элементы идут сверху вниз: header, затем main-layout-container */
    font-family: sans-serif; /* Для лучшей читаемости */
}

.main-layout-container {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

/* Стили для бокового меню */
.sidebar {
    width: 220px;
    background-color: #f2f2f2;
    padding-left: 10px;
    height: 100vh;
    transition: transform 0.3s ease-in-out;
}


/* Кнопка меню (появляется только на мобильных) */
.menu-toggle {
    display: none;
    position: fixed;
    top: 0px;
    left: 15px;
    z-index: 1001;
    background: #212529;
    color: white;
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* Адаптивность */
@media (max-width: 768px) {

    .logo{
      display: none;
    }
    .sidebar {
        position: fixed;
        top: 10;
        left: 0;
        transform: translateX(-100%);
        height: 100%;
        z-index: 1000;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
    }

    .content {
        flex-grow: 1;
        padding: 20px;
    }
}


/* 3. Боковая панель (Sidebar) */
.sidebar {
    width: 250px; /* Фиксированная ширина */
    background-color: #212529; /* Темный фон, как на ваших скринах */
    color: white;
    font-family:'General-Medium', sans-serif;
    flex-shrink: 0; /* Не позволяет ей сжиматься */
    overflow-y: auto; /* Позволяет прокручивать, если меню длинное */
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar a {
    text-decoration: none;
    color: white;
}

.sidebar li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sidebar li:hover {
    background-color: #343a40;
    border-radius: 5px;
}


/* 4. Основное содержимое (Main Content) */
.content-area {
    flex-grow: 1; /* Занимает все оставшееся горизонтальное пространство */
    padding: 20px;
    background-color: #f8f9fa; /* Светлый фон для контента */
    overflow-y: auto; /* Позволяет прокручивать основной контент */
}

/* Верхняя панель */
.top-navbar {
    background-color: #212529; 
    padding: 5px 20px;
    display: flex;
    align-items: center; /* Выравнивание элементов по вертикали */
    box-shadow: 0 2px 4px rgba(0,0,0,.05); /* Легкая тень */
}

.logo a{
  text-decoration: none;
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
}

.logo{
  padding-left: 0px;
}

.top-navbar .logo span {
    font-size: 1.5em;
    color: #fff; /* Пример цвета */
}

.top-navbar{
  font-family: 'General-Medium', sans-serif;
}

.top-navbar .search-bar {
    margin-left: 50px; /* Небольшой отступ от логотипа */
    max-width: 400px;
    flex-grow: 1; /* Позволяет строке поиска занимать место */
}

/* Элементы справа */
.top-navbar .user-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px; /* Расстояние между Notifications и User */
    margin-left: auto;
}

.top-navbar .user-controls .user-info {
    font-weight: 500;
    color: white;
}

.user-info{
  padding-bottom: 10px;
}

.user-info a{
  text-decoration: none;
  color: white;
}

.top-navbar .user-controls a {
    text-decoration: none;
}


/* Ставим красный кружок с количеством */
.notification .badge {
    font-size: 0.7rem;
    padding: 0.15em 0.45em;
}

.dropdown-menu {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin; /* для Firefox */
  scrollbar-color: #ccc transparent;
}

/* Для Chrome */
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}
.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}


/* Стиль для input в строке поиска */
.top-navbar .search-bar .form-control {
    border-radius: 20px;
    padding: 5px 15px;
}

main {
    flex-grow: 1;
    padding-left: 50px;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 115px);
    margin-bottom: 10px;
    margin-top: 15px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 100px);
    gap: 15px;
    list-style: none;
    padding: 0;
}

.calender-days a li{
    list-style-type: none;
}

.calendar-days a {
    text-decoration: none;
    color: #212529;
}

.calender-days a:hover{
    text-decoration: none;
    color: #212529;
}

.day-options{
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.tasks-for-day{
    font-size: 19px;
    color: black;
    font-weight: bold;
}

.button-add-task{
    margin-left: auto;
    padding-right: 95px;
}

.add-task-btn{
    text-decoration: none;
    color: white;
    border: 1px solid blue;
    border-radius: 7px;
    background-color: blue;
    padding: 1px 25px 1px 25px;
    text-align: center;
    font-size: 19px;
}

.add-task-btn:hover{
    color: white;
}

.task-form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    
}

.task-form-field{
    border: 1px solid black;
    border-radius: 7px;
    width: 550px;
    height: 35px;
    padding-left: 5px;
}

.task-form-field-big{
    border: 1px solid black;
    border-radius: 7px;
    width: 550px;
    height: 150px;
    resize: none;
}

.my-lead-page{
    display: flex;
    flex-direction: row;
}


.add-lead-button{
    margin-left: auto;
    padding-right: 55px;
}

.add-lead-btn{
    text-decoration: none;
    color: white;
    border: 1px solid blue;
    border-radius: 7px;
    background-color: blue;
    padding: 0px 15px 1px 15px;
    text-align: center;
    font-size: 19px;
}

.add-lead-top-block{
    display: flex;
    flex-direction: row;
    padding-top: 15px;
}

.btn-csv-from-add-lead{
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-family: 'General-Medium', sans-serif;
    font-size: 15px;
    padding: 5px;
    border: 1px solid black;
    border-radius: 7px;
    background-color: black;
    margin: auto;
    margin-right: 70px;
    font-size: 17px;
    
}

.add-csv-file-link a{
    color: white;
    text-decoration: none;
}

.log-in-google-btn a{
    text-decoration: none;
    color: black;
}

.log-in-google-btn{
    margin-top: 10px;
}

.login-google-button{
    border: 2px solid black;
    border-radius: 5px;
    background-color: white;
    padding: 5px;
}

.gsi-material-button {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-appearance: none;
    background-color: WHITE;
    background-image: none;
    border: 1px solid #747775;
    -webkit-border-radius: 4px;
    border-radius: 7px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #1f1f1f;
    cursor: pointer;
    font-family: 'General-Medium', sans-serif;
    font-size: 21px;
    height: 40px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    text-align: center;
    -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
    max-width: 400px;
    min-width: min-content;
    margin-top: 10px;
  }
  
  .gsi-material-button a{
    text-decoration: none;
    color: #303030;
  }

  .gsi-material-button .gsi-material-button-icon {
    height: 20px;
    margin-right: 12px;
    min-width: 20px;
    width: 20px;
  }
  
  .gsi-material-button .gsi-material-button-content-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }
  
  .gsi-material-button .gsi-material-button-contents {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
  }
  
  .gsi-material-button .gsi-material-button-state {
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .gsi-material-button:disabled {
    cursor: default;
    background-color: #ffffff61;
    border-color: #1f1f1f1f;
  }
  
  .gsi-material-button:disabled .gsi-material-button-contents {
    opacity: 38%;
  }
  
  .gsi-material-button:disabled .gsi-material-button-icon {
    opacity: 38%;
  }
  
  .gsi-material-button:not(:disabled):active .gsi-material-button-state, 
  .gsi-material-button:not(:disabled):focus .gsi-material-button-state {
    background-color: #303030;
    opacity: 12%;
  }
  
  .gsi-material-button:not(:disabled):hover {
    -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  }
  
  .gsi-material-button:not(:disabled):hover .gsi-material-button-state {
    background-color: #303030;
    opacity: 8%;
  }
  
.login-buttons{
  display: flex;
  flex-direction: row;
  align-items:first baseline;
  gap: 15px;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}


.registration-button a{
  text-decoration: none;
  border: 1px solid #212529;
  border-radius: 7px;
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: #212529;
  padding: 10px 35px 10px 35px;
  margin-left: 5px;
}

.registration-button{
  font-size: 21px;
}

.showPassword1{
  font-family: 'General-Medium', sans-serif;
  margin-top: 10px;
}

.submit-button{
    margin-top: 10px;
}

.submit-btn{
    border: 1px solid black;
    background-color: black;
    color: white;
    border-radius: 5px;
    padding: 5px;
    width: 190px;
}

.mail-page{
    display: flex;
    flex-direction: row;
}

.mail-recipients{
    margin-left: auto;
    padding-right: 100px;
}

.mail-form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    
}

.email-form{
    border: 1px solid black;
    border-radius: 5px;
    width: 550px;
    height: 35px;
}

.email-form-big{
    border: 1px solid black;
    border-radius: 5px;
    width: 550px;
    height: 150px;
}

input[type="file"] {
    position: relative;
  }
  
  input[type="file"]::file-selector-button {
    width: 136px;
    color: transparent;
  }
  
  /* Faked label styles and icon */
  input[type="file"]::before {
    position: absolute;
    pointer-events: none;
    top: 8px;
    left: 16px;
    height: 20px;
    width: 20px;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 23' fill='%230964B0'%3E%3Cpath d='M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z'/%3E%3C/svg%3E");
  }
  
  input[type="file"]::after {
    position: absolute;
    pointer-events: none;
    top: 6px;
    left: 40px;
    color: #0964b0;
    content: "Upload File";
    
  }
  
  /* ------- From Step 1 ------- */
  
  /* file upload button */
  input[type="file"]::file-selector-button {
    border-radius: 4px;
    padding: 0 16px;
    height: 40px;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    margin-right: 16px;
    transition: background-color 200ms;
  }
  
  /* file upload button hover state */
  input[type="file"]::file-selector-button:hover {
    background-color: #f3f4f6;
  }
  
  /* file upload button active state */
  input[type="file"]::file-selector-button:active {
    background-color: #e5e7eb;
  }

.csv-btns,
.edit-btns{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    gap: 15px;
}

.upload-btn{
    border: 1px solid black;
    background-color: black;
    border-radius: 3px;
    color: white;
    font-size: 18px;
    padding: 0px 15px 0px 15px;
}

.cancel-btn{
    background-color: white;
    border-radius: 3px;
    color: black;
    padding: 0px 15px 0px 15px;
}

.csv-btns a{
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.all-tasks{
    margin-top: 15px;
}

.tasks{
    border: 1px solid #303030;
    padding: 10px;
    border-radius: 10px;
    width: 90%;
    margin-bottom: 10px;
}

.chat {
  border: 1px solid rgb(165, 165, 165);
  width: 90%;
  min-width: 500px;
  height: 500px;                /* фиксируем высоту */
  display: flex;
  flex-direction: column;
  border-radius: 15px 15px 0 0; /* скругление только сверху */
}

/* Контейнер для сообщений */
#chat-messages {
  flex: 1;                      /* занимает всё свободное место */
  overflow-y: auto;             /* вертикальная прокрутка */
  padding: 10px;
  background: #fafafa;
  border-bottom: 1px solid #ddd;
}

.chat-object {
  border: 1px solid #303030;
  border-radius: 15px;
  padding: 7px;
  display: block;
  width: fit-content;
  max-width: 70%;
  margin-bottom: 10px;
  word-wrap: break-word;
}

/* 🔹 Сообщения других (слева) */
.other-message {
  background-color: #f1f1f1;
  margin-right: auto;
}

/* 🔹 Мои сообщения (справа) */
.my-message {
  background-color: #d1ffd1;
  margin-left: auto;
}

.chat-username {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.chat-messsage {
  font-size: 16px;
  border: 1px solid transparent;
  padding: 2px 5px;
  display: inline-block;
  max-width: 100%;
  word-wrap: break-word;
}

/* Форма ввода */
.form-chat {
  border: 1px solid #1f1f1f;
  border-top: none;
  padding: 10px;
  width: 90%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.message-input {
  flex: 1;
  border: 1px solid black;
  border-radius: 7px;
  padding: 5px 8px;
  width: 500px;
}


.document-table,
.table-table,
.video-table,
.image-table{
  display: flex;
  flex-direction: column;
}

#container {
    margin: 0 auto;
    width: 100%;
}
#accordion input {
	display: none;
}
#accordion label {
	border: 1px solid rgb(214, 214, 214);
    border-radius: 5px;
    font-family: 'Evol-2', sans-serif;
    color: black;
    font-size: 20px;
	cursor: pointer;
	display: block;
	margin-bottom: 15px;
	padding: .25em 1em;
	z-index: 20;
}
#accordion label:hover {
	background: rgb(214, 214, 214);
}

#accordion input:checked + label {
	background: black;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	color: white;
	margin-bottom: 0;
}
#accordion article {
	background: #f7f7f7;
	height:0px;
	overflow:hidden;
	z-index:10;
}
#accordion article p {
	padding: 1em;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: black;
}


.faq-header{
  font-size: 42px;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
}

.faq-content {
  margin: 0 auto;
  width: 100%;
  color: black;
}

.faq-question {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.panel-title {
  font-size: 17px;
  width: 550px;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 10px;
  display: block;
  cursor: pointer;
}

.panel-content {
  font-size: 17px;
  font-family: 'General-Medium', sans-serif;
  color: black;
  padding: 0px 14px;
  margin: 0 0px;
  height: 0;
  overflow: hidden;
  z-index: 1;
  position: relative;
  opacity: 0;

}

.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
}

.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 35px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;

}

.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}

.faq-bold{
    font-size: 18px;
    color: black;
}

#accordion input:checked ~ article {
	border-bottom-left-radius: .25em;
	border-bottom-right-radius: .25em;
	height: auto;
	margin-bottom: .125em;
}

.first-main-blocks{
  display: flex;
  flex-direction: row;
  gap:100px;
  text-align: center;
  margin-top: 35px;
}

.first-block,
.second-block,
.third-block{
  font-family: 'General-Bold',sans-serif;
  font-size:25px;
  color:#212529;
}

.active-listings{
  margin-top: 25px;
  padding-bottom: 35px;
  border-bottom: 1px solid #ccc;
}

.under-contract{
  margin-top: 15px;
}

.active-listings-title,
.under-contract-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 25px;
  color: #212529;
}

.active-title,
.under-contract-titles{
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  color: #212529;
  border-bottom: 1px solid #ccc;
}

.active-values,
.under-contract-values{
  font-family: 'General-Bold', sans-serif;
  font-size: 15px;
  color: #212529;
}

.images-listing{
  display: flex;
  flex-direction: column;
  gap: 35px;
}


.listing-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.condo {
  position: relative;
  width: 400px;   /* фиксируем ширину */
  height: 250px;  /* фиксируем высоту, равную картинке */
  overflow: hidden; /* чтобы ничего не вылезало */
}

.condo-text {
  position: absolute;
  bottom: -15px;   /* фиксируем снизу */
  left: 10px;     /* фиксируем слева */
  font-family: 'General-Bold', sans-serif;
  font-size: 75px;
  color: white;
  z-index: 2;
}

.townhouse-text{
  position: absolute;
  bottom: -15px;   /* фиксируем снизу */
  left: 10px;     /* фиксируем слева */
  font-family: 'General-Bold', sans-serif;
  font-size: 65px;
  color: white;
  z-index: 2;
}

.house-text{
  position: absolute;
  bottom: -15px;   /* фиксируем снизу */
  left: 10px;     /* фиксируем слева */
  font-family: 'General-Bold', sans-serif;
  font-size: 75px;
  color: white;
  z-index: 2;
}

.multifamily-text{
  position: absolute;
  bottom: -15px;   /* фиксируем снизу */
  left: 10px;     /* фиксируем слева */
  font-family: 'General-Bold', sans-serif;
  font-size: 65px;
  color: white;
  z-index: 2;
}

.condo-listings{
  display: flex;
  flex-direction: row;
  gap: 15px;

}

.top-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 35px;
}

.listing-info{
  display: flex;
  flex-direction: row;
  gap: 35px;
}

.additional-listing{
  margin-top: 10px;
}

.dropdown-item {
    white-space: normal; /* перенос текста */
    word-wrap: break-word;
}


.events{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.event-card{
     border-radius: 8px;
    margin-bottom: 10px;
        background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  padding: 10px;
  width: 800px;
}


.event-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 25px;
  color: #212529;
}

.event-days{
  font-family: 'General-Medium', sans-serif;
  font-size: 20px;
  color: #6c757d;
}

.event-description{
  font-family: 'General-Medium', sans-serif;
  font-size: 20px;
  color: #212529;
}

.event-date{
  font-family: 'General-Bold', sans-serif;
  color: #212529;
  font-size: 20px;
}

.event-location{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon-event{
  font-size: 10px;
  margin-top: 4px;
}

.event-text{
  font-family: 'General-Bold', sans-serif;
  font-size: 17px;
  color: #212529;
}

.ev-location{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #6c757d;
}

.event-clock{
  font-family: 'General-Medium', sans-serif;
  color: #6c757d;
  font-size: 19px;
}

.event-card{
  display: flex;
  flex-direction: column;
}

.event-card-top,
.event-card-bottom{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.event-card-bottom{
  margin-top: 10px;
}

.team-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 35px;
  margin-bottom: 15px;
}

.stat-member{
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
  
}

.member-info{
  display: flex;
  flex-direction: column;
  border-radius: 7px;
  padding: 5px;
  text-align: center;
    background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.member-name a{
  text-decoration: none;
  color: #212529;
}

.member-name{
  font-family: 'General-Bold', sans-serif;
  font-size: 15px;
  color: #212529;
}

.member-role{
  font-family: 'General-Medium', sans-serif;
  font-size: 14px;
  color: #212529;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  width: 100px;
  margin: auto;
}

.deals{
  font-family: 'General-Medium', sans-serif;
  font-size: 14px;
  color: #747775;
}

.team-leads{
  font-family: 'General-Medium', sans-serif;
  font-size: 14px;
  color: #747775;
  margin-top: 5px;
}

.team-leads-span{
  font-family: 'General-Bold', sans-serif;
}

.deal-block{
  padding-top: 10px;
}

.add-member{
  margin-top: 10px;
  display: flex;
  flex-direction: row;
}

.add-member-form{
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px 10px 2px 10px;
  font-family: 'General-Medium', sans-serif;
  font-size: 16px;
}

.add-member-btn{
  border: 1px solid #212529;
  border-radius: 5px;
  background-color: #212529;
  color: #ccc;
  font-family: 'General-Medium', sans-serif;
  font-size: 16px;
}

.team-blocks{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 20px;
  border-top: 1px solid #747775;
  padding-top: 30px;
}

.chat-block,
.listings-block,
.transactions-block,
.materials-block,
.events-block,
.venders-block{
  border-radius: 7px;
  padding: 10px;
    background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.chat-block a,
.listings-block a,
.transactions-block a,
.materials-block a,
.events-block a,
.venders-block a{
  text-decoration: none;
  color: #212529;
  font-family: 'General-Bold', sans-serif;
  font-size: 22px;
  
}


.hint{
  color: #747775;
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 18px;
}

.title-btn{
  display: flex;
  flex-direction: row;
}

.add-listing-button {
  width: 830px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
  padding-top: 15px;
}


.add-listing-button a{
  text-decoration: none;
  color: white;
}

.doc-top{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1120px;
  align-items: flex-start;
}

.add-button{
  margin-left: 625px;
  margin-top: 15px;
}

.add-button a{
  text-decoration: none;
  color: white;
}

.add-listing-btn{
  border: 2px solid #212529;
  background-color: #212529;
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  padding: 5px;
  border-radius: 7px;
}

.add-btn{
  border: 2px solid #212529;
  background-color: #212529;
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  padding: 5px;
  border-radius: 7px;
}

.form-wrapper {
  display: flex;
  justify-content: center; /* центрируем по горизонтали */
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* текст и поля остаются по левому краю */

}


.form-block{
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  justify-content: center;
}

.form-block-1,
.form-block-2{
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.form-block-1{
  margin-top: 10px;
  margin-bottom: 15px;
}

.form-block-3{
  display: flex;
  flex-direction: row;
  gap: 35px;
  margin-top: 10px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.form-block-4{
  display: flex;
  flex-direction: column;

}

.block-3{
  margin-bottom: 10px;
  border-top: 1px solid #ccc;
}

.listing-form-text{
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  margin-bottom: 5px;
}

.listing-form-text-bold{
  font-family: 'General-Bold', sans-serif;
  font-size: 21px;
  color: #212529;
  margin-bottom: 5px;
  margin-top: 70px;
}

.small-text{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
  margin-bottom: 5px;
}

.dropbox-form{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 200px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px;
}

.dropbox-transaction-form{
    border: 1px solid #747775;
  border-radius: 7px;
  width: 500px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px;
}

#id_service_type{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 500px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px;
}

#id_service_title{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 500px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px;
}


.text-address-form{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 500px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px;
}

.price-form{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 500px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px; 
}

.price-form::-webkit-outer-spin-button,
.price-form::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.digit-form{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 200px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px; 
}

.digit-form::-webkit-outer-spin-button,
.digit-form::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.big-text-form{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 500px;
  height: 150px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px;   
  resize: none;
}

.url-form{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 500px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px;  
}

.button-google-login{
margin: auto;
  margin-top: 10px;
}

.submit-1-button{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.submit-1-button a{
  text-decoration: none;
}

.submit-1-button :hover{
  color: white;
}

.submit-1-btn{
  border: 1px solid #212529;
  background-color: #212529;
  border-radius: 7px;
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: white;
  padding: 5px 35px 5px 35px;
}

.space-block{
  margin-top: 10px;
}

.main-menu-2 {
  display: flex;
  align-items: flex-start;
  
  gap: 100px;
  margin-top: 10px;
}

.leads-main,
.event-main,
.tasks-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;/* min-height; можно подстроить под нужную высоту */
}

.check-list-main{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.check-list-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 25px;
  color: #212529;
}

.check-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  
}

.check-do{
  font-family: 'General-Medium', sans-serif;
  color: #212529;
}

.check-done{
  font-family: 'General-Medium', sans-serif;
  color: #747775;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.check-do-span{
    text-decoration: line-through;
}

.main-button {
  margin-top: auto;
  align-self: flex-start; /* кнопка остаётся слева */
}



.leads-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 25px;
  color: #212529;
}

.list-leads{
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
  border-bottom: 1px solid #ccc;
  width: 150px;
}

.leads-zero{
  
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
}

.main-button a{
  text-decoration: none;
  color: white;
}

.main-btn{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  border: 1px solid #212529;
  border-radius: 7px;
  background-color: #212529;
  padding: 5px 35px 5px 35px;

}


.event-main-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 25px;
  color: #212529;
}

.event-name{
  font-family: 'General-Bold', sans-serif;
  font-size: 19px;
  color: #212529;
}

.event-main-days{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;

}

.event-main-clock{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
}

.event-main-clock{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
}

.event-main-location{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
}

.event-main-date{
  font-family: 'General-Bold', sans-serif;
  font-size: 19px;
  color: #212529;
}

.bold-black{
  font-family: 'General-Bold', sans-serif;
  color: #212529;
}

.bold-grey{
  font-family: 'General-Bold', sans-serif;
  color: #747775;
}

.listings-text{
  font-family: 'General-Medium', sans-serif;
  color: #212529;
}

.agent-information{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  border-radius: 7px;
  padding: 15px 20px 15px 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  width: 700px;
}

.agent-image-main{
  margin-bottom: 10px;
}

.agent-image{
  border-radius: 100px;
}

.agent-info{
  text-align: center;
}

.agent-name{
  font-family: 'General-Bold', sans-serif;
  font-size: 24px;
  color: #212529;
}

.agent-role{
  font-family: 'General-Medium', sans-serif;
  font-size: 20px;
  color: #212529;
}

.agent-joined{
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  color: #212529;
  padding-top: 10px;
  padding-bottom: 10px;
}

.agent-hb{
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: #747775;
}

.contact-info{
  border-top: 1px solid #ccc;
  padding-top: 5px;
}

.bold-agent-info{
  font-family: 'General-Bold', sans-serif;
  font-size: 17px;
  color: #212529;
}


.agent-mail,
.agent-phone,
.agent-username{
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: #212529;
}

.agent-city{
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: #212529; 
  margin-top: 10px;
}

.agent-cities{
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: #212529;
  width: 300px;
}

.profile-button{
  margin-top: 15px;
}

.profile-button a{
  text-decoration: none;
  color: white;
}

.personal-main{
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-grow: 1;
}

.personal-greetings{
  padding-top: 2px;
}

.base-agent-image{
  object-fit:cover;
  border-radius: 100px;
  width: 30px;
}

.tasks-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 25px;
  color: #212529;
}

.tasks-text a{
  text-decoration: none;
  color: #212529;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.tasks-text{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
}

.agent-username{
  margin-bottom: 5px;
  font-size: 17px;
}

.personal-username{
  font-family: 'General-Bold', sans-serif;
}

.form-image{
  border: 1px solid #747775;
  border-radius: 10px;
  font-family: 'General-Medium', sans-serif;
  color: white;
  width: 400px;
  background-color: #212529;
  margin-bottom: 10px;
}

.form-text-agent{
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
}

.role-form,
.area-form,
.phone-form,
.date-form{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 400px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.birthday-form{
    border: 1px solid #747775;
  border-radius: 7px;
  width: 500px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.agent-image-form{
  margin: auto;
  padding-bottom: 10px;
}

.doc-table{
 border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #747775; /* Example border */
  border-radius: 10px; /* Adjust as needed */
  overflow: hidden; /* Hides any cell content that might extend beyond the rounded corners */

}

.doc-table-top{
  border-bottom: 1px solid #747775;
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
}

.doc-table-bottom{
  border-bottom: 1px solid #747775;
}

.doc-title a,
.doc-download a,
.doc-example a{
  text-decoration: none;
  color: #212529;
}

.doc-title,
.doc-description,
.doc-download,
.doc-type,
.doc-example{
  font-family: 'General-Medium', sans-serif;
  font-size: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  padding-top: 3px;
  padding-left: 10px;
}


.doc-th-title,
.doc-th-description,
.doc-th-download,
.doc-th-example,
.doc-th-type{
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  color: white;
  background-color: #212529;
  padding-left: 10px;
}


.text-form{
  border: 1px solid #747775;
  border-radius: 7px;
  padding: 3px;
  width: 500px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
}

    /* style.css */
    .checkbox-group {
        display:grid;
        grid-template-columns: repeat(4,1fr);
        gap: 10px;
        width: 500px;
        align-items: baseline;
      }

    .checkbox-item {
        display: flex;
        align-items: center;
    }

    .checkbox-item input[type="checkbox"] {
        margin-right: 5px;
        /* Custom checkbox styling */
        width: 20px;
        height: 20px;
        border: 1px solid #ccc;
        border-radius: 3px;
        appearance: none; /* Hide default checkbox */
        -webkit-appearance: none;
        cursor: pointer;
    }

    .checkbox-item input[type="checkbox"]:checked {
        background-color: #343a40; /* Example checked state */
        border-color: #343a40;
    }

    .checkbox-item label {
        font-weight: normal;
        cursor: pointer;
        font-family: 'General-Medium', sans-serif;
        font-size: 19px;
    }

.form-text{
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  margin-bottom: 5px;
}

.doc-desc-form{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 500px;
  height: 100px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px;   
  resize: none;
}

.custom-file {
    position: relative;
    display: inline-block;
}

.custom-file input[type=file] {
    display: none; /* скрываем стандартное поле */
}

.custom-file label {
    background: #212529;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
}

.custom-file span {
    margin-left: 10px;
    font-family: 'General-Medium', sans-serif;
}

.form-file{
  border: 1px solid #747775;
  border-radius: 10px;
  font-family: 'General-Medium', sans-serif;
  color: #212529;
  width: 300px;
  background-color: white;
  margin-bottom: 10px;
}

.custom-file {
    position: relative;
    display: inline-block;
}

.custom-file input[type=file] {
    display: none;
}

.custom-file label {
    background: #212529;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'General-Medium', sans-serif;
}

.custom-file span {
    margin-left: 10px;
    font-family: 'General-Medium', sans-serif;
}

.back-button a{
  text-decoration: none;
  color: #212529;
}

.back-button{
  font-family: 'General-Bold', sans-serif;
  font-size: 19px;
  margin-bottom: 10px;
}

.vender-phone-form{
  border: 1px solid #747775;
  border-radius: 7px;
  width: 500px;
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
  padding: 3px; 
}

.vender-phone-form::-webkit-outer-spin-button,
.vender-phone-form::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filters-form {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items:flex-end;
    margin-top: 20px;
}

.filters-form-m{
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items:flex-end;
    margin-top: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    font-family: 'General-Medium', sans-serif;
    font-size: 18px;
}

.filter-select {
  border: 1px solid #747775;
  border-radius: 7px;
  width: 300px;
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: #212529;
  padding: 3px;
}


.filter-submit-btn{
  border: 1px solid #212529;
  border-radius: 7px;
  background-color: #212529;
  color: white;
  padding-right: 10px;
  padding-left: 10px;
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
}

.clear-filter {
    padding: 5px 10px;
    text-decoration: none;
    color: #212529;
    font-family: 'General-Medium', sans-serif;
    font-size: 18px;
}

.clear-filter:hover{
  color: #212529;
}

.venders-table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #747775; /* Example border */
  border-radius: 10px; /* Adjust as needed */
  overflow: hidden; /* Hides any cell content that might extend beyond the rounded corners */
}

.venders-table-title{
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  background-color: #212529;
  color: white;
}

.venders-table-text{
  padding-left: 10px;
}

.venders-table-values{
  font-family: 'General-Medium', sans-serif;
  font-size: 15px;
  color: #212529;
  background-color: white;
  border-bottom: 2px solid black;
  padding-top: 10px;
  padding-bottom: 10px;
}

.venders-table-value{
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 1px solid #ccc;
  padding-top: 10px;
  padding-bottom: 10px;
}

.venders-table-value a{
  text-decoration: none;
  color: #212529;
}


.images-table{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.objects-none{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.none-text{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
}

.calendar{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calendar-header{
  font-family: 'General-Bold', sans-serif;
  font-size: 21px;
  color: #212529;
}

.calendar-days{
  font-family: 'General-Medium', sans-serif;
  font-size: 21px;
  color: #212529;
}

.current-day{
  border: 1px solid #212529;

  background-color: #343a40;
  color: white;
  font-family: 'General-Bold', sans-serif;
}



.calendar-buttons{
display: flex;
flex-direction: row;
gap: 15px;
align-items:center;
justify-content: center;
margin-top: 30px;
}

.calendar-buttons a{
  text-decoration: none;
  color: white;
}

.calendar-button{
  border: 1px solid #212529;
  border-radius: 7px;
  background-color: #212529;
  padding: 5px 15px 5px 15px;
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
}

.calendar-btn{
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start; 
}

.leads-table{
 border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #747775; /* Example border */
  border-radius: 10px; /* Adjust as needed */
  overflow: hidden; /* Hides any cell content that might extend beyond the rounded corners */
}

.leads-table-title{
  background-color: #212529;
  color: white;
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  padding-left: 10px;
}

.leads-table-value a{
  text-decoration: none;
  color: #212529;
}

.leads-table-value{
  font-family: 'General-Medium', sans-serif;
  font-size: 15px;
}

.leads-top-priority,
.leads-top-name,
.leads-top-contacts,
.leads-top-price,
.leads-top-type,
.leads-top-transaction-type,
.leads-top-stage,
.leads-top-additional{
  padding-left: 10px;
}

.leads-value-priority,
.leads-value-name,
.leads-value-contacts,
.leads-value-price,
.leads-value-type,
.leads-value-transaction-type,
.leads-value-stage,
.leads-value-additional{
  padding-left: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-right: 20px;
}

.lead-high{
  border: 1px solid rgb(254, 108, 108);
  border-radius: 15px;
  padding: 2px 15px 2px 15px;
  background-color: rgb(254, 108, 108);
  color: white;
  text-align: center;
}

.lead-medium{
  border: 1px solid rgb(255, 242, 96);
  border-radius: 15px;
  padding: 2px 15px 2px 15px;
  background-color: rgb(255, 242, 96);
  color: #212529;
  text-align: center;
}

.lead-low{
  border: 1px solid rgb(96, 133, 255);
  border-radius: 15px;
  padding: 2px 15px 2px 15px;
  background-color: rgb(96, 133, 255);
  color: white;
  text-align: center;
}

.lead-closed{
  border: 1px solid rgb(121, 194, 109);
  background-color: rgb(121, 194, 109);
  border-radius: 15px;
  padding: 2px 15px;
  color: #212529;
  font-family: 'General-Bold', sans-serif;
  text-align: center;
}

.lead-contract{
  border: 1px solid rgb(245, 229, 54);
  background-color: rgb(245, 229, 54);
  border-radius: 15px;
  padding: 2px 15px;
  color: #212529;
  font-family: 'General-Bold', sans-serif;
  text-align: center;
}

.lead-personal{
  border: 1px solid rgb(64, 109, 255);
  border-radius: 15px;
  padding: 2px 15px 2px 15px;
  background-color: rgb(64, 109, 255);
  color: white;
}

.lead-transaction-type{
  border: 1px solid rgb(245, 229, 54);
  border-radius: 15px;
  padding: 2px 15px 2px 15px;
  background-color: rgb(245, 229, 54);
  color: #212529;
}

.lead-airbnb{
  border: 1px solid rgb(245, 70, 70);
  border-radius: 15px;
  padding: 2px 15px 2px 15px;
  background-color: rgb(245, 70, 70);
  color: white;
}

.leads-value-contacts{
  display: flex;
  flex-direction: column;
  gap: 5px;

}

.leads-value-email {
  color: #212529;
  font-size: 16px;
  text-decoration: underline dotted #747775;
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.leads-value-email::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  font-family: 'General-Medium', sans-serif;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 9999;
}

.leads-value-email:hover::after {
  opacity: 1;
}

.leads-value-phone{
  color: #747775;
  font-size: 14px;
  text-decoration: underline dotted #747775;
  position: relative;
  cursor: pointer;
}

.leads-value-phone::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  font-family: 'General-Medium', sans-serif;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 9999;
}

.leads-value-phone:hover::after {
  opacity: 1;
}


.leads-value-additional a{
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.leads-value-additional a::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  font-family: 'General-Medium', sans-serif;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 9999;
}

.leads-value-additional a:hover::after {
  opacity: 1;
}


.leads-value-price{
  font-family: 'General-Bold', sans-serif;
  font-size: 16px;
  color: #212529;
}

.statistic-table{
  border-radius: 7px;
  padding: 10px 35px;
  margin-bottom: 20px;
  width: 1120px;
      background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.statistic-table-m{
  display: none;
}

.statistic-leads{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 600px;
  margin: auto;
}

.leads-text{
  font-family: 'General-Bold', sans-serif;
  font-size: 18px;
  color: #212529;
}

.leads-count{
  font-family: 'General-Bold', sans-serif;
  font-size: 30px;
  color: #212529;
  text-align: center;
}

.leads-filter {
  border: 1px solid #ccc;
  border-radius: 7px;
  width: 170px;
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
  padding: 5px;
}

.lead-filter-text{
  font-size: 17px;
  font-family: 'General-Medium', sans-serif;
  color: #212529;
}

.lead-filter-form{
  margin-top: 30px;
  margin-bottom: 30px;
}

.lead-filter-form-m{
  display: none;
}


.transaction-table{
 border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #747775; /* Example border */
  border-radius: 10px; /* Adjust as needed */
  overflow: hidden; /* Hides any cell content that might extend beyond the rounded corners */
}

.transaction-table-title{
  background-color: #212529;
  color: white;
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  padding-left: 10px;
}

.transactions-top{
  padding-left: 10px;
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
}

.transaction-value{
  padding-left: 10px;
  font-family: 'General-Medium', sans-serif;
  font-size: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  padding-top: 10px;
}

.closed-transaction{
  border: 1px solid rgb(121, 194, 109);
  background-color: rgb(121, 194, 109);
  border-radius: 13px;
  padding: 2px 15px;
  color: white;
  font-family: 'General-Bold', sans-serif;
  text-align: center;
}

.under-contract-transaction{
  border: 1px solid rgb(245, 229, 54);
  background-color: rgb(245, 229, 54);
  border-radius: 15px;
  padding: 2px 15px;
  color: #212529;
  font-family: 'General-Bold', sans-serif;
  text-align: center;
}

.listing-form-text-additional{
  font-family: 'General-Medium', sans-serif;
  font-size: 14px;
  color: rgb(254, 108, 108);
}

.ai-button{
  padding-bottom: 10px;
}

.ai-btn{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  
}

#generate-btn{
  color: white;
  border: 1px solid #212529;
  background-color: #212529;
  padding: 2px 10px;
  border-radius: 7px;
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
}

.task-grid{
  display: flex;
  flex-direction: column;
  gap: 55px;
  width: 750px;
  margin: auto;
}

.task-flex{
  display: flex;
  flex-direction: column;
}

.task {
    display: flex;
    justify-content: space-between; /* Текст слева, изображение справа */
    align-items: flex-start; /* Выровнять по верхнему краю */
    padding: 10px;

    border-radius: 8px;
    margin-bottom: 10px;
        background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.task-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 21px;
  color: #212529;
  margin-bottom: 10px;
}

.task-time{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #747775;
    margin-bottom: 5px;
}

.task-time-value{
  font-family: 'General-Bold', sans-serif;
  font-size: 19px;
  color: #212529;
}

.task-description{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
  margin-bottom: 10px;
}

.task-steps-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 19px;
  color: #212529;
}

.task-steps{
  font-size: 17px;
  font-family: 'General-Medium', sans-serif;
  color: #212529;
  margin-bottom: 10px;
}

.task-block{
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: flex-start;
}

.task-buttons{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.task-additional a{
  text-decoration: none;
  color: #212529;
}

.dashboard{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.dashboard-block-1,
.dashboard-block-2{
  display: flex;
  flex-direction: row;
  margin-bottom: 25px;
  gap: 25px;
}

.checklist{
  display: flex;
  flex-direction: column;
    border-radius: 7px;
  padding: 5px 20px 10px 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  width: 200px;
}

.my-date{
    display: flex;
  flex-direction: column;
    border-radius: 7px;
  padding: 5px 20px 10px 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  width: 200px;
  height: 195px;
}

.leads-values-1{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 65px;
  align-items: center;
}

.dashboard-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 25px;
  color: #212529;
  margin-bottom: 10px;
}

.dashboard-top{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items:start;
}

.dashboard-button a{
  text-decoration: none;
  color: white;
}

.dashboard-btn{
  background-color: #212529;
  border: 1px solid #212529;
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 7px;
}

.my-leads{
  border-radius: 7px;
  padding: 5px 20px 10px 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.leads-values{
  display: flex;
  flex-direction: row;
  width: 850px;
  align-items:baseline;
  justify-content: space-between;
}

.leads-list{
  display: flex;
  flex-direction: column;
}
.lead-item {
  border-bottom: 1px solid #f0f0f0;
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  color: #212529;
}

.high-priority-leads,
.need-call-leads,
.in-progress-leads,
.total-count-leads{
  text-align: center;

}

.dashboard-text{
  font-family: 'General-Bold', sans-serif;
  font-size: 17px;
  color:#212529;
}

.dashboard-value{
  font-family: 'General-Bold', sans-serif;
  font-size: 30px;
  color:#212529;
}

.my-date{
  text-align: center;
}

.dashboard-date-value{
  font-size: 50px;
  font-family: 'General-Bold', sans-serif;
  color: #212529;
}

.dashboard-day-value{
  font-size: 21px;
  font-family: 'General-Bold', sans-serif;
  color: #212529;
}

.dashboard-tasks,
.dashboard-events {
  border-radius: 7px;
  padding: 10px 20px 15px 20px;
  width: 545px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}


.dashboard-task-title {
  font-family: 'General-Bold', sans-serif;
  font-size: 17px;
  color: #212529;
  margin-bottom: 4px;
}

.dashboard-task-description {
  font-family: 'General-Medium', sans-serif;
  font-size: 15px;
  color: #3d3d3d;
  margin-bottom: 6px;
}

.dashboard-task-start {
  font-size: 14px;
  color: #747775;
  font-family: 'General-Medium', sans-serif;
}

.dashboard-task-time {
  font-family: 'General-Bold', sans-serif;
  color: #212529;
}


.dashboard-event {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
}

.dashboard-today,
.dashboard-tomorrow,
.dashboard-upcoming {
  font-family: 'General-Bold', sans-serif;
  font-size: 18px;
  color: #212529;
  margin: 10px 0 5px;
}

.dashboard-event-title {
  font-family: 'General-Bold', sans-serif;
  font-size: 17px;
  color: #212529;
}

.dashboard-event-description {
  font-family: 'General-Medium', sans-serif;
  font-size: 15px;
  color: #4b4b4b;
  margin-top: 2px;
}

.dashboard-block-3{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.dashboard-active-listings,
.dashboard-contract-listings{
  border-radius: 7px;
  padding: 10px 20px 15px 20px;
  width: 1120px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.agent-stat{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1120px;
  gap: 25px;
}

.total-closed,
.gross-commission,
.sales-volume{
  border-radius: 7px;
  padding: 10px 20px 15px 20px;
  width: 1120px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  text-align: center;
}


.materials-table{
 border-collapse: separate;
  border-spacing: 0;

  border-radius: 10px; /* Adjust as needed */
  overflow: hidden; /* Hides any cell content that might extend beyond the rounded corners */
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.team-materials{
  display: flex;
  flex-direction: row;
  align-items: self-start;
  gap: 10px;
}

.materials-table-title{
  background-color: #212529;
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  color: white;
}

.materials-top,
.materials-value{
  padding-left: 10px;
  padding-right: 10px;
}

.materials-value a{
  text-decoration: none;
  color: #212529;
}

.materials-value{
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  color: #212529;
  border-bottom: 1px solid #ccc;
  padding-top: 10px;
  padding-bottom: 10px;
}

.material-title{
  font-family: 'General-Medium', sans-serif;
  color: #212529;
  text-decoration: underline solid 1px #212529;
}

.venders-table-value-phone{
  color: #747775;
  font-size: 15px;
  text-decoration: underline dotted #747775;
  position: relative;
  cursor: pointer;
    padding-left: 10px;
  padding-right: 10px;
  border-bottom: 1px solid #ccc;
  padding-top: 10px;
  padding-bottom: 10px;
}

.venders-table-value-phone::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 70%;
  left: 35%;
  transform: translateX(-50%);
  background-color: #333;
  font-family: 'General-Medium', sans-serif;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 9999;
}

.venders-table-value-phone:hover::after {
  opacity: 1;
}


.agents-phone{
  font-family: 'General-Bold', sans-serif;
  color: #212529;
  font-size: 17px;
  text-decoration: underline dotted #747775;
  position: relative;
  cursor: pointer;
}

.agents-phone::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  font-family: 'General-Medium', sans-serif;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 9999;
}

.agents-phone:hover::after {
  opacity: 1;
}

.agents-email{
  font-family: 'General-Bold', sans-serif;
  color: #212529;
  font-size: 17px;
  text-decoration: underline dotted #747775;
  position: relative;
  cursor: pointer;
}

.agents-email::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  font-family: 'General-Medium', sans-serif;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 9999;
}

.agents-email:hover::after {
  opacity: 1;
}

.manage-listing a{
  text-decoration: none;
  color: #212529;
}

.manage-listing{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding-bottom: 7px;
}

.listing-link a{
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.listing-link a::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  font-family: 'General-Medium', sans-serif;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 9999;
}

.listing-link a:hover::after {
  opacity: 1;
}

.listing-edit a{
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.listing-edit a::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  font-family: 'General-Medium', sans-serif;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 9999;
}

.listing-edit a:hover::after {
  opacity: 1;
}

.listing-delete a{
  position: relative;
  cursor: pointer;
  z-index: 1;
}

.listing-delete a::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  font-family: 'General-Medium', sans-serif;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 9999;
}

.listing-delete a:hover::after {
  opacity: 1;
}

.learning-materials{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
  margin-top: 15px;
}

.training-videos,
.master-classes,
.images-files{
    border-radius: 7px;
  padding: 10px 20px 15px 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.learning-title{
  display: flex;
  flex-direction: row;
  align-items: top;
  gap: 10px;
}

.learning-materials-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 24px;
  color: #212529;
}

.learning-materials-text{
  font-family: 'General-Medium', sans-serif;
  font-size: 20px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.learning-materials-link a{
  text-decoration: none;
  color: white;
}

.learning-materials-button{
  border: 1px solid #212529;
  background-color: #212529;
  border-radius: 7px;
  padding: 5px 10px;
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
}

.material-symbols-outlined.md-48{
  font-size: 30px;
}

.dashboard-top-m,
.dashboard-a-table-m,
.dashboard-title-m{
  display: none;
}

.leads-mobile,
.my-transactions-m,
.all-docs-m{
  display: none;
}

.pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.step-links a{
  text-decoration: none;
}

.step-links a:not(.page-now):hover {
  color: #212529;
}

.page-now:hover {
  color: white;
}


.pag-pages .page-now a:hover{
  color: white;
}

.step-link,
.page-now,
.page{
  font-family: 'General-Bold', sans-serif;
  font-size: 21px;
  margin-left: 5px;
  color: #212529;
}

.page-now{
  border: 1px solid #212529;
  background-color: #212529;
  color: white;
  font-size: 24px;
  padding: 5px;
  border-radius: 7px;
}

.team-materials-m{
  display: none;
}

.event-tomorrow{
    border: 1px solid rgb(245, 229, 54);
  background-color: rgb(245, 229, 54);
  border-radius: 15px;
  padding: 2px 15px;
  color: #212529;
  font-family: 'General-Medium', sans-serif;
  text-align: center;
}

.event-today{
    border: 1px solid rgb(254, 108, 108);
  background-color: rgb(254, 108, 108);
  border-radius: 15px;
  padding: 2px 15px;
  color: white;
  font-family: 'General-Medium', sans-serif;
  text-align: center;
}

.venders-m{
  display: none;
}

@media (max-width: 768px) {
  .dashboard-block-1,
  .dashboard-block-2,
  .agent-stat{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .agent-stat{
    width: 390px;
  }
    
  .my-date{
    display: none;
  }

  .leads-list{
    display: none;
  }

  .leads-values{
    width: 350px;
  }

  .leads-values-1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 10px;
    width: 340px;
    gap: 20px;
  }

  .dashboard-title,
  .dashboard-top,
  .dashboard-a-table,
  .dashboard-u-c-table{
    display: none;
  }

  .dashboard-a-table-m{
    display: flex;
    flex-direction: column;
  }

  .dashboard-top-m{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

  .dashboard-button-m a{
    text-decoration: none;
    color: white;
  }

  .dashboard-btn-m{
    border: 1px solid #212529;
    border-radius: 7px;
    padding: 5px 10px;
    font-family: 'General-Medium', sans-serif;
    font-size: 16px;
    background-color: #212529;
  }

  .dashboard-title-m{
    display: flex;
    font-family: 'General-Bold', sans-serif;
  font-size: 23px;
  color: #212529;
  margin-bottom: 10px;
  }

  .dashboard-text{
    font-size: 14px;
  }

  .dashboard-tasks,
  .dashboard-events,
  .dashboard-active-listings,
  .dashboard-contract-listings,
  .total-closed,
  .gross-commission,
  .sales-volume{
    width: 390px;
  }

  .dashboard-listings{
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #ccc;
    font-family: 'General-Bold', sans-serif;
    font-size: 16px;
    color: #212529;
  }

  .dashboard-listings span{
    font-family: 'General-Medium', sans-serif;
    margin-left: 5px;
    font-size: 15px;
  }

  .stat-member{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .team-blocks{
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .agent-information{
    width: 380px;
    margin-top: 10px;
  }

  .notif-dropdown {
    position: fixed !important;
    top: 60px !important; /* регулируй под свою шапку */
    right: 10px !important;
    left: auto !important;
    transform: none !important;
    width: 90% !important;
    max-width: 320px;
    z-index: 2000 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }


  .checklist{
    width: 390px;
  }

  .form-block{
    display: flex;
    flex-direction: column;
    margin: auto;
  }

  .block-3{
    display: flex;
    flex-direction: column;
    margin: auto;
    border: none;
  }

  .form-block-1,
  .form-block-2,
  .form-block-3,
  .form-block-4{
    display: flex;
    flex-direction: column;
    margin: auto;
    gap: 0px;
    padding-bottom: 15px;
  }

  .text-address-form,
   .price-form,
   .digit-form,
   .url-form,
   .big-text-form,
   .dropbox-form,
   .text-form,
   .vender-phone-form,
   .birthday-form,
   .doc-desc-form,
   #id_service_type,
   #id_service_title,
   .date-form,
   .dropbox-transaction-form{
    width: 300px;
  }

  .btn-csv-from-add-lead{
    margin-right: 0px;
  }

  .form-block-3{
    margin-top: 25px;
  }

  .listing-form-text-bold{
    margin-top: 10px;
    text-align: center;
  }

  .top-title{
    font-size: 25px;
  }

  .add-csv-file-link{
    font-size: 14px;
  }

  .leads-table,
  .transaction-table{
    display: none;
  }


  .lead-filter-form{
    display: none;
  }

  .lead-filter-form-m{
    display:flex;
  }
  
  .filters-form{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 25px;
  }

  .filters-form-m{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .filter-group-m{
    display: flex;
    flex-direction: column;
    font-family: 'General-Medium', sans-serif;
    font-size: 18px;
  }

  .filter-submit-btn{
    font-size: 15px;
  }

  .statistic-table{
 display: none;
}

  .statistic-table-m{
    display: flex;
    border-radius: 7px;
  padding: 10px 35px;
  margin-bottom: 20px;
  width: 390px;
      background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }

  .statistic-leads-m{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    text-align: center;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin: auto;
  }

  .transaction-m-title{
    font-family: 'General-Bold', sans-serif;
    font-size: 15px;
    color: #212529;
  }

  .transaction-m-value{
    font-family: 'General-Bold', sans-serif;
    font-size: 25px;
    color: #212529;
  }

  .filter-buttons{
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }


  .leads-mobile,
  .my-transactions-m{
    display: flex;
    flex-direction: column;
    margin-top: 15px;
  }

  .lead-card,
  .transactions-m{
    border-radius: 7px;
    padding: 10px 20px 15px 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
  }

  .lead-card-top,
  .transaction-card-top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }

  .lead-card-bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 25px;
  }

  .lead-card-name{
    font-family: 'General-Bold', sans-serif;
    font-size: 21px;
    color: #212529;
  }

  .lead-card-text{
    font-family: 'General-Medium', sans-serif;
    font-size: 15px;

  }

  .lead-card-value{
    font-family: 'General-Bold', sans-serif;
    font-size: 15px;
    color: #212529;
  }

  .transaction-card-middle{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    text-align: center;
  }

  .transaction-card-bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
  }

  .transaction-card-value{
    font-family: 'General-Medium', sans-serif;
    font-size: 15px;
    color: #212529;
  }

  .transaction-card-text{
    font-family: 'General-Bold', sans-serif;
    font-size: 15px;
    color: #212529;
  }

  .transaction-card-address{
    font-size: 16px;
    font-family: 'General-Bold', sans-serif;
    text-align: right;
  }

  .closed-transaction{
    border: 1px solid rgb(121, 194, 109);
    background-color: rgb(121, 194, 109);
    border-radius: 7px;
    padding: 0px 5px;
    color: white;
    font-family: 'General-Bold', sans-serif;
    text-align: center;
    font-size: 15px;
  }

  .under-contract-transaction{
  border: 1px solid rgb(245, 229, 54);
  background-color: rgb(245, 229, 54);
  border-radius: 7px;
  padding: 0px 5px;
  color: #212529;
  font-family: 'General-Bold', sans-serif;
  text-align: center;
  font-size: 15px;
}

  .doc-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* а не baseline */
    align-items:baseline; /* чтобы были на одной линии */
    width: 100%; /* чтобы адаптивно растягивалось */
    margin-bottom: 10px;
  }

  .add-button{
    margin-left: 0px;
  }

  .add-btn{
    font-size: 15px;
    
  }

  .lead-high{
  border: 1px solid rgb(254, 108, 108);
  border-radius: 7px;
  padding: 2px 15px 2px 15px;
  background-color: rgb(254, 108, 108);
  color: white;
  text-align: center;
}

.lead-medium{
  border: 1px solid rgb(255, 242, 96);
  border-radius: 7px;
  padding: 2px 15px 2px 15px;
  background-color: rgb(255, 242, 96);
  color: #212529;
  text-align: center;
}

.lead-low{
  border: 1px solid rgb(96, 133, 255);
  border-radius: 7px;
  padding: 2px 15px 2px 15px;
  background-color: rgb(96, 133, 255);
  color: white;
  text-align: center;
}

.lead-closed{
  border: 1px solid rgb(121, 194, 109);
  background-color: rgb(121, 194, 109);
  border-radius: 7px;
  padding: 2px 15px;
  color: #212529;
  font-family: 'General-Bold', sans-serif;
  text-align: center;
}

.lead-contract{
  border: 1px solid rgb(245, 229, 54);
  background-color: rgb(245, 229, 54);
  border-radius: 7px;
  padding: 2px 15px;
  color: #212529;
  font-family: 'General-Bold', sans-serif;
  text-align: center;
}

.filter-select{
  width: 230px;
  margin-top: 15px;
}

.all-doc{
  display: none;
}

.document-card{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 7px;
  padding: 10px 20px 15px 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.document-card-l a{
  text-decoration: none;
  color: #212529;
}

.document-card-download a{
  color: #212529;
  text-decoration: none;
}

.document-card-l{
  display: flex;
  flex-direction: column;
  width: 250px;
}

.document-card-title{
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  margin-bottom: 5px;
}

.document-card-text{
  font-family: 'General-Bold', sans-serif;
  font-size: 15px;
  color: #212529;
}

.document-card-description,
.document-card-type,
.document-card-example{
  font-family: 'Genral-Medium', sans-serif;
  font-size: 15px;
}

.all-docs-m{
  display: flex;
  flex-direction: column;
}
                                                          
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 55px);
    list-style: none;
    padding: 0;
    gap: 0px;
    font-size: 20px;
}

.calendar-days li{
  padding: 5px 0px 5px 0px;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 55px);
    margin-bottom: 10px;
    margin-top: 15px;
}

.task{
  width: 390px;
}

.learning-materials{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-materials-m{
  display: flex;
  flex-direction: column;

}

.team-materials-card{
     border-radius: 7px;
    padding: 10px 20px 15px 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.team-materials-card a{
  text-decoration: none;
  color: #212529;
}

.team-materials-card-top{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.team-materials-card-bottom{
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  justify-content: space-between;
  align-items: flex-end;
}

.team-materials-card-bottom-1{
  display: flex;
  flex-direction: column;
}

.team-materials-title a{
  text-decoration: none;
  color: #212529;
}

.team-materials-title{
  font-family: 'General-Bold', sans-serif;
  font-size: 17px;
}

.team-materials-desc{
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
}

.team-materials-text-bold{
  font-family: 'General-Bold', sans-serif;
  font-size: 15px;
}

.team-materials-type{
  font-family: 'General-Medium', sans-serif;
  font-size: 19px;
  color: #212529;
}

.team-materials-text{
  font-family: 'General-Medium', sans-serif;
  font-size: 17px;
  color: #212529;
}

.materials-table{
  display: none;
}

.event-grid{
  width: 390px;
}

.checkbox-group {
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  width: 300px;
  align-items: baseline;
}

.event-card{
  width: 390px;
}    

.venders-m{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.vender-card{
      border-radius: 7px;
    padding: 10px 20px 15px 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column; 
    width: 390px;
    text-align: center;
}

.vender-card-title{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}

.vender-card-name{
  font-family: 'General-Bold', sans-serif;
  font-size: 21px;
  color: #212529;
}

.vender-card-del a{
  text-decoration: none;
  color: #212529;
}

.vender-card-service-type{
  font-family: 'General-Medium', sans-serif;
  font-size: 20px;
  color: #212529;
  margin-top: 10px;
}

.vender-card-service-title{
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: #6c757d;

}

.vender-card-description{
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: #212529;
  margin-top: 10px;
}


.vender-card-cities{
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: #212529;
}

.vender-card-bottom{
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: baseline;
  justify-content: center;
}

.vender-card-text{
  font-family: 'General-Medium', sans-serif;
  font-size: 18px;
  color: #212529;
}

.venders-table-value-phone{
  color: #747775;
  font-size: 18px;
  text-decoration: underline dotted #747775;
  position: relative;
  cursor: pointer;
    padding-left: 10px;
  padding-right: 10px;
  border-bottom: 0px solid #ccc;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: 'General-Medium', sans-serif;
}

.venders-table{
  display: none;
}

.panel-title{
  width: 350px;
}

.condo-listings{
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

}