body {
  text-align: center;
}
.elements_form {
  display: block;
}
.Buttons {
  margin-top: 2%;
}
button {
  background-color: #007BFF; /* Green */
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  transition: 1s;

}
button:hover {
  transition: 1s;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
input[type=text] {

  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}
input[type=text].GoogleInput {
  width: 30%;
}
input[type=text]:focus {
  border: 3px solid #555;
}
h1 {
  text-align: center;
  text-transform: uppercase;
  color: #007BFF;
}

p {
  text-indent: 50px;
  text-align: justify;
  letter-spacing: 3px;
}


.input-file {
  position: relative;
  display: inline-block;
}
.input-file-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-size: 14px;
  vertical-align: middle;
  color: rgb(255 255 255);
  text-align: center;
  border-radius: 4px;
  background-color: #419152;
  line-height: 22px;
  height: 40px;
  padding: 10px 20px;
  box-sizing: border-box;
  border: none;
  margin: 0;
  transition: background-color 0.2s;
}
.input-file-text {
  padding: 0 10px;
  line-height: 40px;
  display: inline-block;
}
.input-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

/* Focus */
.input-file input[type=file]:focus + .input-file-btn {
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Hover/Active */
.input-file:hover .input-file-btn {
  background-color: #59be6e;
}
.input-file:active .input-file-btn {
  background-color: #2E703A;
}

/* Disabled */
.input-file input[type=file]:disabled + .input-file-btn {
  background-color: #eee;
}

.styled-select {
            position: relative;
            display: inline-block;
            width: 200px;
        }

        .styled-select select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            appearance: none; /* Убираем стандартные стрелки в некоторых браузерах */
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M7.646 10.854a.5.5 0 0 0 .708 0L10.293 9 12 10.707l-4.646 4.646a.5.5 0 0 1-.708 0L4 10.707 5.707 9l2.293 2.293z"/></svg>') no-repeat right 10px center;
            background-color: #fff;
        }

        .styled-select select:focus {
            border-color: #007BFF;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

        .styled-select::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #333;
            pointer-events: none;
        }


.styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 16px;
            font-family: Arial, sans-serif;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        }

        .styled-table thead tr {
            background-color: #007BFF;
            color: #ffffff;
            text-align: left;
        }

        .styled-table th,
        .styled-table td {
            padding: 12px 15px;
        }

        .styled-table tbody tr {
            border-bottom: 1px solid #dddddd;
        }

        .styled-table tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }

        .styled-table tbody tr:last-of-type {
            border-bottom: 2px solid #007BFF;
        }

        .styled-table tbody tr:hover {
            background-color: #f5f5f5;
        }

        .styled-table a {
            color: #007BFF;
            text-decoration: none;
        }

        .styled-table a:hover {
            text-decoration: underline;
        }
        .styled-table a.removeId {
            color: #FF8400;
            text-decoration: none;
        }

        .center {
            display: flex;
            justify-content: center;
        }


         a {
            color: #007BFF;
            text-decoration: none;
            position: relative;
            display: inline-block;
            transition: color 0.3s ease;
        }

        a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #007BFF;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease;
        }

        a:hover {
            color: #0056b3;
        }

        a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        .removeId {
          color: #FF8400;
        }
        .removeId::after {
          color: #FF8400;
        }
        .removeId:hover {
          color: #FFA94C;
        }
        
        label {
            display: block;
            margin-bottom: 10px;
            font-size: 18px;
            color: #333;
            position: relative;
            padding-left: 30px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        label::before {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border: 2px solid #007BFF;
            border-radius: 4px;
            transition: border-color 0.3s ease;
        }

        label:hover {
            color: #007BFF;
        }

        label:hover::before {
            border-color: #0056b3;
        }