.auth-forms {
    display: flex;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 790px;
    background-color: #112211;
    color: #24FD61;
    padding: 3px 10px 5px 0;
    z-index: 1001;
    align-items: center;
    justify-content: space-between;
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
}
.left-links {
    margin: 0 0 0 18px;
}
.right-links {
    margin: -3px 0 0 0px;
}
.angle_brackets {
    color: #24FD61;
    text-decoration: none;
    font-size: 34px;
    letter-spacing: -9px;
}
.angle_brackets:hover {
    text-decoration: underline;
}
.tg {
    margin: -5px 0 0 13px;
}
.registration {
    margin: 0 3px 0 0;
    letter-spacing: 0.6px;
}
.vertical_line {
    margin: 0 0px 0 0px;
}
.entrance {
    margin: 0 12px 0 8px;
}
.link-button, .link {
    font-family: 'Quicksand', sans-serif;
}

.link-button {
    display: inline-block;
    color: #24FD61;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    background-color: transparent;
    border: 2px solid #24FD61;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.link {
    color: #24FD61;
    text-decoration: none;
}

.link-button:hover {
    background-color: #24FD61;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.link:hover {
    text-decoration: underline;
}

input[type="text"], input[type="password"] {
    display: inline-block;
    color: #24FD61;
    background-color: transparent;
    border: 2px solid #24FD61;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

input[type="text"]:focus, input[type="password"]:focus {
    outline: none;
    border-color: #24FD61;
    background-color: rgba(36, 253, 97, 0.1);
}

form {
    color: #24FD61;
    font-family: 'Quicksand', sans-serif;
    padding: 0 10px 0 10px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-actions a {
    color: #24FD61;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #24FD61;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-actions a:hover {
    background-color: #24FD61;
    color: black;
    text-decoration: none;
}

.avatar-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрируем элементы по горизонтали */
    gap: 10px; /* Отступ между элементами */
}

.avatar-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.file-input-label {
    display: inline-block;
    color: #24FD61;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    background-color: transparent;
    border: 2px solid #24FD61;
    border-radius: 4px;
    cursor: pointer;
}

.file-input-label:hover {
    background-color: #24FD61;
    color: black;
}

input[type="file"] {
    display: none;
}
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse; /* Убираем двойные границы */
    margin-top: 20px;
}

th, td {
    text-align: center;
    padding: 10px;
    border: 2px solid #24FD61;
    width: 20%; /* Это можно изменить в зависимости от того, сколько колонок */
    font-family: 'Quicksand', sans-serif;
}
th {
    /*background-color: #24FD61; !* Зеленый фон для заголовков *!*/
    color: #24FD61; /* Черный текст для заголовков */
    font-weight: bold;
}

td {
    background-color: #000; /* Черный фон для ячеек */
    color: #24FD61; /* Зеленый текст */
}

h3 {
    font-size: 18px; /* Размер шрифта можно увеличить по вашему усмотрению */
    font-weight: bold; /* Для выделения заголовков */
    font-family: 'Quicksand', sans-serif;
    color: #24FD61;
    margin-top: 40px; /* Отступ сверху для разделения с предыдущими элементами */
    margin-bottom: 15px;
    padding-left: 10px;
}

/* Стили для списка камер */
.camera-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.camera-item {
    background-color: #000;
    color: #24FD61;
    border: 2px solid #24FD61;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-family: 'Quicksand', sans-serif;
}

.camera-item p {
    margin: 5px 0;
}

select.form-control {
    display: inline-block;
    color: #24FD61;
    background-color: transparent;
    border: 2px solid #24FD61;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    width: 40%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

select.form-control:focus {
    outline: none;
    border-color: #24FD61;
    background-color: rgba(36, 253, 97, 0.1);
}

