/* Основные стили */
body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 40px 20px;
}

 .logo {
	  margin-bottom: 15px;
    }

.logo img {
    max-height: 120px;
    display: block;
    margin: 0 auto;
}	
	
.container {
    max-width: 600px;
    margin: 0 auto;
	text-align: center;
    padding: 20px;
}

 footer {
      /*position: absolute;*/
      bottom: 20px;
      font-size: 14px;
      color: #aaa;
      padding: 30px 50px;
    }
	
h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Контейнер поиска */
.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Поле поиска */
#search-box {
    width: 100%;
    padding: 12px 40px 12px 15px; /* место для лупы справа */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    box-sizing: border-box;
    position: relative;
    z-index: 2; /* выше подсказок */
}

/* Иконка лупы */
.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
    z-index: 3; /* всегда поверх всего */
}

/* Подсказки */
.suggestions {
    display: none;       /* скрываем по умолчанию */
    position: absolute;
    top: 100%;           /* под полем поиска */
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;          /* ниже поля и иконки */
    box-sizing: border-box;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
}

.suggestion-item:hover {
    background: #f0f0f0;
}

/* Таблица результатов */
#results {
    max-width: 600px;
    margin: 20px auto 0 auto;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.results-table th, .results-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.results-table th {
    background: #2c3e50;
    color: #fff;
    font-weight: normal;
}

.results-table tr:hover td {
    background: #f5f5f5;
}

.not-found {
    color: red;
    font-weight: bold;
    margin-top: 15px;
}

.info {
	  text-align: center;
      background-color: white;
      display: inline-block;
      padding: 30px 50px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }