body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1 {
    text-align: center;
}

label {
    margin-right: 10px;
}

input {
    margin-bottom: 10px;
    padding: 5px;
}

button {
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
}

div {
    margin-top: 10px;
}
  /* Стиль для размытия фона */
  .blur-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.322);
    filter: blur(5px);
    display: block;
    z-index: 999;
}

/* Стиль для индикатора загрузки */
.loading-indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: block;
}

.spinner {
    border: 4px solid rgb(0, 104, 90);
    border-top: 4px solid #00ffbf;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Анимация для крутящегося индикатора */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-description {
    flex-grow: 1; /* Описание займет все оставшееся пространство */
    padding-right: 10px; /* Небольшой отступ справа */
}

.error-date-cost {
    display: flex;
    justify-content: space-between; /* Разделяем дату и стоимость */
    min-width: 120px;
}

.error-date {
    margin-right: 10px; /* Немного отступа между датой и стоимостью */
}

.error-cost {
    font-weight: bold;
}

.error-remove {
    font-size: 0.9em; /* Размер шрифта для id немного меньше */
    color: #b90101; /* Цвет для id, чтобы он был менее заметным */
    margin-left: 10px; /* Отступ слева для разделения с другими элементами */
    display: inline-block; /* Чтобы id не влиял на выравнивание других элементов */
    cursor: pointer; /* Курсор становится пальцем при наведении */
}

footer {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #00000000;
}

.wave-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
}

svg {
    position: absolute;
    width: 200%;
    height: 100%;
}

.cigarette-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.cigarette {
    position: absolute;
    width: 60px;
    z-index: 2;
}

#errorform {
    pointer-events: none; /* Отключает кликабельность для всех дочерних элементов */
    opacity: 0.6; /* Опционально, чтобы сделать блок визуально менее ярким */
}