    input[type="text"], input[type="email"] {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }
    .autocomplete-box {
      position: relative;
    }
    .suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
    .suggestions div {
      padding: 8px;
      cursor: pointer;
    }
    .suggestions div:hover {
      background-color: #f29020;
      color: white;
    }
    .button {
    background: linear-gradient(135deg, #968eed, #bc1888);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.2s ease;
    }
	.button:hover {
    background: linear-gradient(135deg, #bc1888, #968eed);
    transform: scale(1.03);
    }
    
.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    margin: 0 4px;
    padding: 6px 12px;
    background: #480078;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.pagination a.active {
    background: #d8449f;
}

.pagination a:hover {
    background: #bc1888;
}
    .modal-bg {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.6); display: none; justify-content: center; align-items: center;
		z-index: 9999; /* 🚀 изпращаме го най-отгоре */
    }
    .modal {
        background: white; padding: 20px; border-radius: 12px; width: 420px; position: relative;
    }
    .close-btn {
        position: absolute; top: 10px; right: 10px; cursor: pointer; font-size: 18px;
    }
    .btn-orange {
background: linear-gradient(-45deg, #968eed 0%, #d8449f 25%, #480078 50%, #480078 75%, #bc1888 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;    
    }


.search-tabs .tab:hover {
  background: #d0d0d0;
  transform: scale(1.05);
}

/* Респонзив дизайн */
@media (max-width: 600px) {
  .search-group {
    width: 100%;
    padding: 10px;
  }

  .search-tabs {
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }

  .search-form-box {
    flex-direction: column;
    align-items: stretch;
  }

  .search-form-box input[type="text"],
  .search-form-box button {
    width: 100%;
  }

  .suggestions {
    left: 0;
    right: 0;
    max-height: 150px;
    font-size: 14px;
  }
}

/* Подравняване на търсачката вдясно */
.search-align-right {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

/* Респонзивно – на мобилен да е центрирана */
@media screen and (max-width: 600px) {
  .search-align-right {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
  }

  table th,
  table td {
    font-size: 14px;
    padding: 6px;
    word-break: break-word;
    white-space: normal;
  }
}

.row-new {
  position: relative;
}

.label-new-vert {
  position: absolute;
  left: -18px;
  top: 0;
  background: #d8449f;
  color: white;
  font-size: 10px;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 2px 4px;
  height: 100%;
  border-radius: 0 5px 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: bold;
}

table td {
    left: 14px;
  }


/* На мобилен — заменяме текста с иконка 🆕 */
@media screen and (max-width: 600px) {
  .label-new {
    font-size: 13px;
    padding: 2px 5px;
    content: "🆕";
  }

  .label-new::before {
    content: "🆕";
    font-size: 13px;
  }

  .label-new {
    text-indent: -9999px;
    display: inline-block;
    position: relative;
  }

  .label-new::before {
    text-indent: 0;
    position: absolute;
    left: 0;
  }
}

