    table {
      border-collapse: collapse;
      width: 90%;
      margin: 20px;
	  border-radius: 25px;
    }
    th, td {
      border: 1px solid #444;
      padding: 8px;
      text-align: center;
	    }
    th {
      background-color: #cc9900;
    }
	.mine {
		width: 100px;
		height:40px;
		background-color: MediumSeaGreen;
		border-radius:20px;
		padding-top:5px;
		padding-left:8px;
		text-align:center;
		margin:10px;
		color:black;
	}
	.flex-container1{
	 display: flex;
  flex-direction: column;
 
  
	}
	.flex-container2{
	 display: flex;
  flex-direction: row;
  justify-content: space-around;
	}
	.fido2-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(90deg, #0056B3, #0099FF); /* фирменный синий → яркий голубой */
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.4);
}

.fido2-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.6);
}

.fido2-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

.fido2-button:hover::before {
  left: 125%;
}

/* Адаптивность */
@media (max-width: 768px) {
  .fido2-button {
    padding: 12px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .fido2-button {
    width: 100%;
    display: block;
    text-align: center;
  }
}

/* Для темной темы (если есть) */
.dark-theme .fido2-button {
  background: linear-gradient(90deg, #004494, #007ACC);
  box-shadow: 0 4px 15px rgba(0, 68, 148, 0.4);
}

