* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Geist", sans-serif;
    font-optical-sizing: auto;
}
body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e1e4e8;
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

p.orderSucc{
    font-size: 34px;
    text-align: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.page-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}
.page-title.centerTit {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    margin-top: 20px;
    text-align: center;
}

.dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

/* .card:hover {
    transform: translateY(-5px);
} */

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
}

.chart-container {
    height: 200px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    margin-top: 15px;
}

.description{
  font-size: 13px;
  display: block;
  color: #888888;
}
.queriesBlock{
  margin-top: 20px;
}
.submit-btn{
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 14px 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.submit-btn:hover {
     background-color: #2980b9;
 }

 .submit-btn-searching, .submit-btn-send{
   display: none;
   background-color: #3498db;
   color: white;
   border: none;
   width: 100%;
   border-radius: 6px;
   padding: 14px 30px;
   cursor: pointer;
   font-size: 16px;
   font-weight: 500;
   transition: background-color 0.3s;
 }

 .submit-btn-send{
   margin-top: 30px;
 }

 .submit-btn-searching:hover, .submit-btn-send:hover{
    background-color: #2980b9;
}



.card form textarea{
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 3px;
  box-shadow: none;
  color: #383838;
  height: auto;
  font-size: 14px;
  outline: none;
  width: 100%;
  padding: 2%;
  min-height: 300px;
}

.searchOnSite{
  display: flex;
  flex-direction: row;
  margin-top: 1%;
  margin-bottom: 2%;
  position: relative;
}

.card .searchField{
  flex: 0 1 85%;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 3px;
  box-shadow: none;
  color: #383838;
  height: auto;
  font-size: 14px;
  outline: none;
  padding: 0 2%;
  margin-right: 1%;
  padding-left: 1%;
  min-height: 44px;
  box-sizing: border-box;
}

.searchResults{
  margin-bottom: 2%;
  display: none;
}

.searchResults ul{
  column-count: 3;
  list-style-type: none;
}

.searchResults ul li{
  color: #0098db;
  cursor: pointer;
}

.searchResults ul li.activeSection{
  font-weight: bold;
  text-decoration: underline;
}

.savedList{
  margin-top: 2%;
  display: none;
}
.savedList ul{
  column-count: 3;
  list-style-type: none;
  margin-top:10px;
}

.savedList ul li{
  color: #0098db;
  cursor: pointer;
}

.authBlock{
  width: 370px;
  margin: auto;
  margin-top: 50px;
}

.bxmaker-authuserphone-enter-auth__toregistration{
  display: none;
}

#fill-search {
  flex: 1 1 auto;
}


.nomrg, .page-title{
  margin: 0px;
  padding: 0px;
}

.chart-bar {
    flex: 1;
    background-color: #2ab6f6;
    margin: 0 5px;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.chart-bar:nth-child(2n) {
    background-color: #e9507d;
}

.chart-bar:nth-child(3n) {
    background-color: #fced00;
}

.table-container {
    /* overflow-x: auto;
    max-height: 660px;
    overflow-y: auto; */
    border: 1px solid #e1e4e8;
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e1e4e8;
}

table th:first-child{
  width: 0px;
}


table td:first-child{
  width: 0;
}

tr.LightGreen{
  background: #E1FAE1
}

tr.red{
  background: #FFCDCC
}

tr.yellow.LightGreen{
  background: #E1FAE1
}

tr.blue.LightGreen{
  background: #E1FAE1
}

tr.yellow.red{
  background: #FFCDCC
}

tr.blue.red{
  background: #FFCDCC
}

tr.blue{
  background: #bff0ff;
}

tr.yellow{
  background: #fff3c9
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 10;
}

tr:hover {
    background-color: #f8f9fa;
}

.status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-completed {
    background-color: #d4edda;
    color: #155724;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.pagination button {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination button:hover {
    background-color: #f1f1f1;
}

.pagination button.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

/* Стили для скроллбара */
.table-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.loader{
  width: 200px;
  margin: auto;
  position: relative;
  margin-top: 5%;
}

.dotlottie-wc{
  display: none;
}

.logoA {
    background-image: url(/img/logo3.svg);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: 300px 78px;
    width: 300px;
    height: 78px;
    margin-top: 2px;
    display: block;
}



.headCard{
  display: flex;
  justify-content: space-between;
}

.headCard .left, .headCard .right{
  display: flex;
  gap: 1rem;
}

.resultsBlock{
  margin-top: 30px;
}



.validation span{
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
}

.validation span.like svg{
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -8px;
}

.validation span.like svg path{
  color: #16a34a;
}

.validation span:hover.like svg path{
  fill: #16a34a;
}

.validation span.state.like svg path{
  color: #16a34a;
  fill: #16a34a;
}

.validation span.dislike svg{
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -8px;
}

.validation span.dislike svg path{
  color: #dc2626;
}

.validation span:hover.dislike svg path{
  fill: #dc2626;
}

.validation span.state.dislike svg path{
  color: #dc2626;
  fill: #dc2626;
}

.nameProd{
  max-width: 600px;
  word-break: break-all;
  cursor: pointer;
}

.sortable{
  white-space: nowrap;
  cursor: pointer;
}
.sortable::after {
    content: " ↕";
    opacity: 0.5;
}
.sort-asc::after {
    content: " ↑";
    opacity: 1;
    color: #2196F3;
}
.sort-desc::after {
    content: " ↓";
    opacity: 1;
    color: #2196F3;
}


/* Основные стили формы */
#auth-page-form {
    font-family: Arial, sans-serif;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Стили для тела формы */
.form_body {
    margin-bottom: 20px;
}

/* Стили для контейнеров полей ввода */
.form-control {
    margin-bottom: 15px;
}

.form-control label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-control label span {
    font-size: 14px;
}

/* Стили для обязательных звездочек */
.required-star {
    color: #ff0000;
}

.required-fields-note .star {
    color: #ff0000;
}

.required-fields-note .muted888 {
    color: #888;
    font-size: 12px;
}

/* Стили для полей ввода */
.form-control input[type="text"],
.form-control input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-control input[type="text"]:focus,
.form-control input[type="password"]:focus {
    outline: none;
    border-color: #0098db;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Стили для обязательных полей */
.form-control input.required {
    border-left: 3px solid #ff0000;
}

/* Стили для раздела "Запомнить меня" и "Забыли пароль" */
.filter.block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.prompt.remember.onoff {
    display: flex;
    align-items: center;
}

.prompt.remember.onoff input[type="checkbox"] {
    margin-right: 8px;
}

.prompt.remember.onoff label {
    margin: 0;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.forgot {
    color: #0098db;
    text-decoration: none;
    font-size: 14px;
}

.forgot:hover {
    text-decoration: underline;
}

/* Стили для кнопок */
.buttons.clearfix {
    margin-top: 20px;
}

.line-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.line-block--column {
    flex-direction: column;
}

.line-block--align-flex-start {
    align-items: flex-start;
}

.line-block--24-vertical {
    gap: 24px;
}

.line-block__item {
    width: 100%;
}

.width100 {
    width: 100%;
}

/* Стили для кнопок */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-default {
    background-color: #0098db;
    color: white;
    border: 1px solid #0098db;
}

.btn-default:hover {
    background-color: #595959;
    border-color: #595959;
}

.btn-default.freeze {
    background-color: #595959;
    border-color: #595959;
}

.btn-default.clearList{

  background-color: red;
  border-color: red;
  padding: 2px 10px;
}


.btn-lg {
    padding: 12px 30px;
    font-size: 16px;
    width: 100%;
}

.btn-transparent-border-color {
    background-color: transparent;
    color: #0098db;
    border: 1px solid #0098db;
}

.btn-transparent-border-color:hover {
    background-color: #595959;
    color: white;
}

/* Расположение кнопок */
.line-block__item.width100 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.pull-right {
    margin-left: auto;
}

/* Стили для чекбокса "Запомнить меня" */
input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Стили для скрытых полей */
input[type="hidden"] {
    display: none;
}

.clearboth {
    clear: both;
}

/* Адаптивность */
@media (max-width: 480px) {
    #auth-page-form {
        padding: 15px;
        margin: 10px;
    }

    .filter.block {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .line-block__item.width100 {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .pull-right {
        margin-left: 0;
    }
}

.btn.register{
  display: none;
}


.headerBottom{
  display: flex;
}

.saveResults{
   margin-left: auto;
}
.btn.btn-default.saveButton{
  background: #e1428b;
  display: flex;
  border:1px solid #e1428b;
  padding-top: 17px;
  box-sizing: border-box;
  padding-left: 16px;
  display: none;
}

.btn.btn-default.saveList{
  background: #0098db;
  display: flex;
  border:1px solid #0098db;
  padding-top: 17px;
  box-sizing: border-box;
  padding-left: 16px;
}


.btn.btn-default.saveButton:hover{
  background-color: #595959;
  border-color: #595959;
}

.btn.btn-default.saveButton.saved{
  background-color: #595959;
  border-color: #595959;
}


.icoSave{
  display: inline-block;
  max-width: 40px;
  margin: 0;
  padding: 0;
  margin-right: 10%;
}

.icoSave svg{
  width: auto;
  height: 20px;
}

.icoSave svg path {
   fill: #fff; /* Changes the inner color to red */
   stroke: #fff; /* Changes the outline color to blue */
  stroke-width: 22px;
 }

.hideRows span{
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding-right: 26px;
}

.hideRows span::after{
  content: "";
  width: 16px;
  height: 3px;
  background: #2980b9;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
  right: 0px;
}

.hideRows span::before{
  content: "";
  width: 3px;
  height: 16px;
  background: #2980b9;
  display: none;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 6.6px;
}


.hideRows.rowsHidden span::before{
  display: block;
}

.dopInfo{
  display: none;
  word-break: break-all;
}

.dopInfo .zag{
  font-weight: bold;
  margin-top: 3px;
}

.clear {
  background-image: url(/img/remove.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 195px;
  top: 13px;
  cursor: pointer;
}
.phrase{
  cursor: pointer;
}

/* Стили для состояния загрузки/отправки формы */
#auth-page-form:disabled,
#auth-page-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Стили для ошибок валидации */
.form-control input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}


.appendTr {
  animation: blinker 1s linear infinite; /* 1s duration, linear timing, infinite loop */
}

@keyframes blinker {
  50% {
    opacity: 0; /* At 50% of the animation, the element is fully transparent */
  }
}



@media (max-width: 768px) {
    .dashboard {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
