@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

body.no-scroll {
  overflow: hidden;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  border: none;
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
  resize: none;
}

.main-secondary {
  padding: 100px 0;
}

.container {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 30px;
}

.header-secondary {
  background-color: #333;
  height: auto;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
}

.header-secondary > .nav-menu {
  width: 100%;
  padding: 0 30px;
  max-width: 1460px;
  margin-top: 0;
}

.nav-menu__login-link {
  line-height: 47px;
  transition: all 0.2s ease;
}

.nav-menu__login-link:hover {
  background-color: #77ac40;
  color: #ffffff;
}

.nav-menu__search {
  transform: scale(0.9);
  transition: transform 0.2s ease;
}

.nav-menu__search:hover {
  background-color: transparent;
  transform: scale(1);
}

.footer {
  justify-content: center;
  padding: 50px 30px;
}

.section__title--secondary {
  margin-bottom: 60px;
  text-align: center;
}

.auth {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.auth__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.auth__form input[type="text"],.auth__form input[type="password"]{
  margin-bottom: 30px;
}

.auth__dop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.auth__dop a {
  color: #77ac40;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.auth__dop a:hover {
  color: #5c882e;
}

.auth__remember {
  position: relative;
}

.ps-field {
  height: 58px;
  padding: 5px 30px;
  border: 3px solid #77ac40;
  border-radius: 10px;
}

.ps-field::placeholder {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.ps-field:focus::placeholder {
  opacity: 0;
}

.ps-checkbox {
  position: relative;
}

.btn {
  height: 60px;
  padding: 5px 35px;
  border-radius: 10px;
  font-weight: 600;
}

.btn:hover {
  background-color: #5c882e;
}

.btn:active {
  background-color: #4a6e22;
}

.btn--fill {
  background-color: #77ac40;
  color: #ffffff;
  transition: background-color 0.2s ease;
}
.lc-links a.btn--fill,td a.btn--fill {
  color: #fff !important;
  text-decoration: none !important;
  line-height: 50px !important;
}
.btn-upload {
  position: relative;
  padding-left: 70px;
}

.btn-upload:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 23px;
  width: 32px;
  height: 32px;
  background: url(../img/ps-plus.svg) 50% 50%/100% no-repeat;
  transform: translateY(-50%);
}

.checkbox-wrapper {
  position: relative;
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  color: #808080;
  line-height: 22px;
  cursor: pointer;
}

.custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #808080;
  border-radius: 4px;
  margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox + label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 32%;
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  flex-grow: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transform: translateY(-50%);
}

.custom-checkbox:checked + label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath stroke='%23fff' stroke-width='0.5' fill='%2377AC40' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  background-color: #eee;
}

.custom-checkbox:not(:disabled):active + label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-checkbox:focus:not(:checked) + label::before {
  border-color: #808080;
}

.custom-checkbox:disabled + label::before {
  background-color: #e9ecef;
}

.lc-tabs__caption {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  padding: 0 50px;
  list-style-type: none;
  border-bottom: 3px solid #77ac40;
}

.lc-tabs__caption li {
  background-color: #ffffff;
  width: 32%;
  padding: 20px;
  color: #77ac40;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border: 3px solid #77ac40;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lc-tabs__caption li:hover, .lc-tabs__caption li.active {
  background-color: #77ac40;
  color: #ffffff;
}

.lc-tabs__content {
  display: none;
}

.lc-tabs__content.active {
  display: block;
}

.lc-tabs__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.lc-tabs__col {
  width: 100%;
  max-width: 710px;
  margin-right: 30px;
}

.lc-tabs__status {
  text-align: center;
}

.lc-tabs__status span {
  display: block;
  width: 200px;
  margin: 20px auto;
}

.lc-form {
  width: 100%;
  max-width: 1100px;
}

.lc-fields {
  margin-bottom: 50px;
}

.lc-fields input[type="text"] {
  width: 100%;
  padding: 5px 15px;
  border-width: 1px;
}

.lc-fields__row {
  margin-bottom: 30px;
}

.lc-fields__row label {
  display: block;
  margin-bottom: 10px;
}

.lc-fields__row:last-child {
  margin-bottom: 0;
}

.lc-fields__row--sm {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.lc-fields__row--sm input {
  margin-right: 15px;
}

.lc-fields__row--sm input:first-child {
  width: 28%;
}

.lc-fields__row--sm input:nth-child(2) {
  width: 38%;
}

.lc-fields__row--sm input:nth-child(3) {
  width: 28%;
  margin-right: 0;
}

.lc-fields__row--sm:last-child {
  margin-bottom: 0;
}

.lc-fields__row--sm:last-child input:first-child {
  width: 59%;
}

.lc-fields__row--sm:last-child input:nth-child(2) {
  width: 38%;
  margin-right: 0;
}

.lc-docs {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.lc-docs__list {
  width: 100%;
  max-width: 710px;
  margin-right: 30px;
}

.lc-input-file {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding-left: 40px;
}

.lc-input-file:hover span {
  color: #77ac40;
}

.lc-input-file:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 34px;
  background: url(../img/upload.svg) 50% 50%/100% no-repeat;
}

.lc-input-file:last-child {
  margin-bottom: 0;
}

.lc-input-file input[type="file"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.lc-input-file span {
  position: relative;
  display: block;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}
.dispflex{display: flex;
  flex-wrap: wrap;
  width: 80%;
  max-width: 100% !important; 
  }
.fil {
    cursor: pointer;
    display: inline-block;
    margin: 10px;
    padding: 10px;
    flex: 4 0 20%;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    }
.files{display: flex;}
.fil:hover{background: #77ac40;color:#fff;}
.fil:hover .files{color:#fff;}
.fil:hover .files svg{color:#fff;}
.files svg{
  width: 80px;
  min-height: 50px;
  display: block;
  margin-right: 20px;
  color:#77ac40;
  }
.lc-links {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
margin-top: 20px;
}

.lc-links button {
  margin-bottom: 15px;
}

.lc-links a {
  display: block;
  margin-bottom: 10px;
  color: #808080;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.lc-links a:hover {
  color: #77ac40;
}

.lc-links a:last-child {
  margin-bottom: 0;
}

.ps-bx__wrapper {
  width: 100%;
  max-width: 1030px;
  margin: 50px auto;
}

.ps-bx__table {
  border-collapse: collapse;
  margin-bottom: 30px;
}

.ps-bx__table td,
.ps-bx__table th {
  height: 60px;
  padding: 10px 13px;
  text-align: left;
  border: 1px solid #000;
}

.ps-bx__table td label:before,
.ps-bx__table th label:before {
  margin-right: 0;
}

.ps-bx__table td a,
.ps-bx__table th a {
  display: block;
  color: #006EB9;
}

.ps-bx__table td a:hover,
.ps-bx__table th a:hover {
  text-decoration: underline;
}

.ps-bx__table td span,
.ps-bx__table th span {
  font-size: 11px;
}

.ps-bx__table thead {
  background-color: #77ac40;
}

.ps-bx__table thead tr th {
  color: #ffffff;
  font-weight: 600;
}

.erorno{background: #c34343;color:#fff;padding:10px;display: inline-block;margin:10px 0px;}
.loading{width: 300px; color:#fff;padding:20px;display: inline-block;margin:10px auto;}
.loading img{margin-bottom: 20px;}
.hides{display: none !important;}
.erorrno{margin: 10px;font-size: 12px;color: #c34343;}
.files a{text-decoration: underline !important;} 
.ps-bx__table.registry thead tr th:nth-child(2) {
  width: 27%;
}

.ps-bx__table.registry thead tr th:nth-child(3) {
  width: 33%;
}

.ps-bx__table.registry thead tr th:nth-child(4) {
  width: 28%;
}

.ps-bx__table.registry thead tr th:nth-child(5) {
  width: 12%;
}

.ps-bx__table.registry-group thead tr th:nth-child(2) {
  width: 20%;
}

.ps-bx__table.registry-group thead tr th:nth-child(3) {
  width: 20%;
}

.ps-bx__table.registry-group thead tr th:nth-child(4) {
  width: 20%;
}

.ps-bx__table.registry-group thead tr th:nth-child(5) {
  width: 25%;
}

.ps-bx__table.registry-group thead tr th:nth-child(6) {
  width: 15%;
}

.ps-bx__table.card thead tr th:nth-child(2) {
  width: 40%;
}

.ps-bx__table.card thead tr th:nth-child(3) {
  width: 10%;
}

.ps-bx__table.card thead tr th:nth-child(4) {
  width: 30%;
}

.ps-bx__table.card thead tr th:nth-child(5) {
  width: 15%;
}

.ps-bx__table.card tbody > tr > td:nth-child(2) {
  width: 40%;
}

.ps-bx__table.card tbody > tr > td:nth-child(3) {
  width: 10%;
  text-align: center;
}

.ps-bx__table.card tbody > tr > td:nth-child(4) {
  width: 30%;
}

.ps-bx__table.card tbody > tr > td:nth-child(5) {
  width: 15%;
}

.ps-bx__btns button:nth-child(2) {
  margin-left: 20px;
}

.card-info {
  margin-bottom: 20px;
}

.card-info__status {
  margin-bottom: 15px;
}

.card-info__status span {
  font-weight: 600;
}

.card-info__status span:last-child {
  color: #77ac40;
  text-decoration: underline;
}

.card-info__period span {
  font-weight: 600;
}

.card-info__period span:last-child {
  color: #808080;
}

.td-wrapper {
  height: auto !important;
  padding: 0 !important;
}

.table-more {
  margin-bottom: 0;
}

.table-more td {
  border-top: none;
  border-bottom: none;
}

.table-more td:nth-child(1) {
  border-left: none;
}

.table-more td:nth-child(1) label {
  opacity: 0;
  cursor: default;
}

.table-more td:nth-child(4) {
  border-right: none;
}

.table-more td:last-child {
  border-left: none;
  border-right: none;
}

.td-more div {
  display: inline-block;
  padding: 0 13px;
  height: 100%;
  border-right: 1px solid #000;
}

.td-more div:nth-child(1) {
  width: 49px;
}

.td-more div:nth-child(2) {
  width: 39.6%;
  text-align: right;
}

.td-more div:nth-child(3) {
  text-align: center;
  width: 9.6%;
  min-width: 92px;
}

.td-more div:nth-child(4) {
  width: 29.6%;
}

.td-more div:nth-child(5) {
  border: none;
  width: auto;
}

@media (max-width: 902px) {
  .lc-tabs__caption {
    padding: 0 15px;
  }
}

@media (max-width: 660px) {
  .section__title--secondary {
    margin-bottom: 30px;
  }
  .auth__form input[type='text'], .auth__form input[type='password'] {
    height: 50px;
    margin-bottom: 15px;
    padding: 5px 15px;
  }
  .lc-tabs__caption {
    overflow-x: auto;
    margin-bottom: 30px;
  }
  .lc-tabs__caption li {
    width: auto;
    font-size: 16px;
    margin-right: 15px;
    padding: 10px 15px;
  }
  .lc-tabs__caption li:last-child {
    margin-right: 0;
  }
  .lc-tabs__info {
    flex-direction: column-reverse;
    align-items: center;
  }
  .lc-tabs__status span {
    max-width: none;
    margin-bottom: 10px;
    font-size: 20px;
  }
  .lc-tabs__status img {
    width: 80px;
  }
  .lc-fields {
    margin-right: 0;
  }
  .lc-fields__row {
    margin-bottom: 15px;
  }
  .lc-fields__row--sm {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .lc-fields__row--sm input {
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .lc-fields__row--sm input:last-child {
    margin-bottom: 0;
  }
  .lc-docs {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .lc-docs button {
    width: 100%;
    margin-top: 30px;
  }
  .lc-links {
    display: flex;
  }
  .lc-links button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-secondary {
    padding: 15px 0;
  }
  .header-secondary > .nav-menu {
    position: relative;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 0 15px 25px 15px;
  }
  .header-secondary > .nav-menu > .nav-menu__left > .nav-menu__logo {
    position: relative;
    top: auto;
  }
  .header-secondary > .nav-menu > .nav-menu__left > .nav-menu__logo img {
    max-width: 120px;
  }
  .header-secondary > .nav-menu > .nav-menu__left > .nav-menu__learning-wrapper {
    position: absolute;
    justify-content: center;
    bottom: 0;
    width: calc(100% - 30px);
    padding-top: 10px;
    border-top: 1px solid #666;
  }
  .header-secondary > .nav-menu > .nav-menu__left > .nav-menu__learning-wrapper > .nav-menu__learning-arrow {
    width: 12px;
    height: 17px;
    margin-left: 10px;
  }
  .header-secondary > .nav-menu > .nav-menu__left > .nav-menu__learning-wrapper > .nav-menu__learning_label {
    font-size: 16px;
  }
  .header-secondary > .nav-menu > .nav-menu__right .nav-menu__login-link {
    font-size: 16px;
    height: 40px;
    line-height: 38px;
  }
  .main-secondary {
    padding: 75px 0;
  }
  .container {
    padding: 0 15px;
  }
  .section__title {
    font-size: 28px;
    line-height: 34px;
  }
  .auth__dop {
    flex-wrap: wrap;
  }
  .auth__dop a {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .footer {
    padding: 20px 15px;
  }
}
.pekeupload-btn-file {
        
  -moz-box-shadow:inset 0px -3px 7px 0px #29bbff;
  -webkit-box-shadow:inset 0px -3px 7px 0px #29bbff;
  box-shadow:inset 0px -3px 7px 0px #29bbff;
  
  background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #2dabf9), color-stop(1, #0688fa));
  background:-moz-linear-gradient(top, #2dabf9 5%, #0688fa 100%);
  background:-webkit-linear-gradient(top, #2dabf9 5%, #0688fa 100%);
  background:-o-linear-gradient(top, #2dabf9 5%, #0688fa 100%);
  background:-ms-linear-gradient(top, #2dabf9 5%, #0688fa 100%);
  background:linear-gradient(to bottom, #2dabf9 5%, #0688fa 100%);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#2dabf9', endColorstr='#0688fa',GradientType=0);
  
  background-color:#2dabf9;
  
  -moz-border-radius:3px;
  -webkit-border-radius:3px;
  border-radius:3px;
  
  border:1px solid #0b0e07;
  
  display:inline-block;
  color:#ffffff;
  font-family:arial;
  font-size:15px;
  font-weight:normal;
  padding:9px 23px;
  text-decoration:none;
  
  text-shadow:0px 1px 0px #263666;
  
}
.pekeupload-btn-file:hover {
  
  background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0688fa), color-stop(1, #2dabf9));
  background:-moz-linear-gradient(top, #0688fa 5%, #2dabf9 100%);
  background:-webkit-linear-gradient(top, #0688fa 5%, #2dabf9 100%);
  background:-o-linear-gradient(top, #0688fa 5%, #2dabf9 100%);
  background:-ms-linear-gradient(top, #0688fa 5%, #2dabf9 100%);
  background:linear-gradient(to bottom, #0688fa 5%, #2dabf9 100%);
  filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0688fa', endColorstr='#2dabf9',GradientType=0);
  
  background-color:#0688fa;
  text-decoration: none;
  color:#fff;
}
.pekeupload-btn-file:active {
  position:relative;
  top:1px;
}


/*
* Base
*/

.progress-pekeupload{

width:100%;
height:16px;
margin:0 auto 20px auto;
padding:0px;

background:#cfcfcf;
border-width:1px;
border-style:solid;
border-color: #aaa #bbb #fff #bbb;    
box-shadow:inset 0px 2px 3px #bbb;    
}

.progress-pekeupload,
.bar-pekeupload{
border-radius:4px;
-moz-border-radius:4px;
-webkit-border-radius:4px;
-o-border-radius:4px;
}

.bar-pekeupload{
height:100%;
background:#999;

background-size:18px 18px;
background-color:#7ce;   
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
                  transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
                  transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
                  transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
                  transparent 75%, transparent);
background-image: -ms-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
                  transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
                  transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
                  transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
                  transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
                  transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
                  transparent 75%, transparent);

box-shadow:inset 0px 2px 8px rgba(255, 255, 255, .5), inset -1px -1px 0px rgba(0, 0, 0, .2);
text-align: center;
}
.alert-pekeupload {
padding: 8px 35px 8px 14px;
margin-bottom: 20px;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
color: #b94a48;
background-color: #f2dede;
border: 1px solid #eed3d7;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
    border-radius: 4px;

border-color: ;
}
.alert-pekeupload .close{
margin-top: 2px;
}

.pekeitem_preview{
float:left;
width:20%;
}
.pekerow .file{
float:left;
width:80%;
}
.pekerow{
overflow: hidden;
width: 100%;
}
.pekeupload-drag-area{
width: 100%;
text-align: center;
padding-top: 50px;
padding-bottom: 50px;
background-color:#f0f0f0;
}



.btn-delete {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-delete:hover {
    background-color: #c82333;
}

/* Стили попапа */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    overflow-y: auto; /* Добавляем прокрутку для мобильных */
    padding: 20px; /* Отступы для маленьких экранов */
}

.popup-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
  margin: 100px auto;
}

.popup-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h2 {
    color: #dc3545;
    margin: 0;
    font-size: 20px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
    line-height: 1;
}

.close-btn:hover {
    color: #343a40;
}

.popup-body {
    padding: 20px;
}

.warning-icon {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
}

.popup-body ul {
    margin: 15px 0 15px 20px;
    color: #666;
}

.popup-body li {
    margin-bottom: 8px;
}

.warning-text {
    color: #dc3545;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.popup-footer {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}



.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Стили для сообщения о результате */
#result-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}