/*
body {
    background-color: black !important;
    color: white !important;
    font-family: Arial, Helvetica, sans-serif !important;
}
a {
    color: rgb(236, 236, 132);
}
a:link {
    color: white;
}
a:visited {
    color: white;
}
a:focus {
    color: white;    
}
a:hover {
    color: white;    
}
a:active {
    color: white;    
}
*/

.flash-messages {
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.flash-message {
padding: 15px;
border-radius: 5px;
margin-bottom: 10px;
font-family: Arial, sans-serif;
font-size: 14px;
color: #fff;
opacity: 0.9;
}

.flash-message.success {
background-color: rgba(76, 175, 80, 0.9); /* Полутон зеленого */
}

.flash-message.error {
background-color: rgba(244, 67, 54, 0.9); /* Полутон красного */
}

.flash-message.warning {
background-color: rgba(255, 152, 0, 0.9); /* Полутон оранжевого */
}

.flash-message.info {
background-color: rgba(33, 150, 243, 0.9); /* Полутон синего */
}
.coefficients {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
}
.coefficients h3 {
margin-top: 0;
}
.coefficients label {
display: inline-block;
width: 150px;
text-align: right;
}
.coefficients input[type="text"] {
width: 100px;
}
.coefficients input[type="number"] {
    width: 100px;
    text-align: right;
}
.input-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}
.input-label {
margin-bottom: 5px;
font-weight: bold;
}
.input-field {
width: 600px;
padding: 5px;
}
.active-menu{
    /* color: yellow; 
    font-weight: bold; */
    /* text-decoration: underline; */
}
.navbar-nav .active > a {
    background-color: yellow !important;
    color: black !important;
}

/* static/styles.css */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}

.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}

.profile_table {
    width: 100%; /* Задаем ширину таблицы на всю доступную ширину */
  }
  
.profile_td {
    width: 33%; /* Задаем ширину каждой ячейки */
    text-align: center; /* Центрируем текст в ячейках */
  }

.profile_th {
    background-color: lightgray; /* Задаем ширину каждой ячейки */
    text-align: center; /* Центрируем текст в ячейках */
  }  