body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.note-border11 {
    background-color: #f5f5f5;
    padding: 20px;
    border: 1px solid #ff0000;
    /* Красная рамка */
    border-radius: 5px;
    /* Закругленные углы */
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
    color: #333;
}

.api-key-section,
.upload-section,
.stats-section,
.history-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

input[type="text"],
input[type="file"] {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 8px 15px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #45a049;
}

a {
    color: #2196F3;
    text-decoration: none;
    margin-left: 10px;
}

a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f5f5f5;
}

.status-pending {
    color: #FF9800;
}

.status-processing {
    color: #2196F3;
}

.status-completed {
    color: #4CAF50;
}

.status-failed {
    color: #F44336;
}

.error {
    color: #F44336;
}

#stats-container {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 4px;
    border: 1px solid #ddd;
}
.container1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}


.logo__icon {
    margin-right: 0.5rem;
    font-size: 1.25em;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
   
    color: var(--primary-color);
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo__text {
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    /* Текст не переносится на новую строку */
}

.logo__image {
    height: 60px;
    /* Регулируйте высоту по необходимости */
    width: auto;
    /* Сохраняет пропорции изображения */
    margin-right: 10px;
    /* Отступ между логотипом и текстом */
}

.logo__icon {
    margin-right: 0.5rem;
    font-size: 1.25em;
}
#cookie-consent {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #222;
      color: #fff;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 9999;
      flex-wrap: wrap;
    }

    #cookie-consent p {
      margin: 0;
      flex: 1 1 100%;
      text-align: center;
    }

    #cookie-consent button {
      margin-top: 10px;
      padding: 8px 16px;
      border: none;
      background-color: #4CAF50;
      color: white;
      cursor: pointer;
      border-radius: 4px;
    }

    #cookie-consent button:hover {
      background-color: #45a049;
    }
