#webauthn-tool-container {
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

#webauthn-register {
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 20px;
}

#passkey-register-tab {
    background-color: #D9DDDC;
    color: #000;
}

#passkey-tab-title {
    border-bottom: 1px solid #000;
}

.react-flow__node {
   z-index: -1 !important;
}

.react-flow__handle{
    visibility: hidden;
}


.spinner {
  width: 35px;
  height: 35px;
  border: 4px solid #ccc;
  border-top: 4px solid #007bff; /* blue top for visual spin */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 5px auto; /* center horizontally */
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .bytesTable {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /*height: 100px;*/
  }
  .bytesTable div{
    display: flex;
    height: 45px;
  }
}



