@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&display=swap');

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #262B3E;
    background-color: #eef2fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #DBE8FE;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #38263E26;
  width: 608px;
}

.sub-container {  
  background-color: white;
  border-radius: 8px;
  padding: 32px;
  width: 576px;
}

.logo {
    display: block;
    width: 150px;
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fields {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.input-group > .alert {
    width: 100%;
    padding: 16px;
}

/* AWS marketplace GET error page */

.formless-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* */

.register-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.input-group label {
    font-weight: bold;
    margin-right: 10px;
}

.input-group input {
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #00000033;    
    width: 293px;
    height: 14px;
    font-size: 18px;;
    color: #262B3E;
}


button:hover {
    background-color: #242435;
}


.status {
  background-color: #c8f7c5;
  padding: 5px 10px;
  border-radius: 5px;
  color: #262B3E;
}

canvas {
  max-width: 100%;
}

.welcome-label {
  color: #262B3E;
  font-weight: 700;
  font-size: 24px;
}

.dashboard-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.results-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.results-details {
  display: flex;
  flex-direction: column;
}

.results-details-row {
  display: flex;
  flex-direction: row;
  gap: 24;
}

.results-details-last-row {
  display: flex;
  flex-direction: column;
  gap: 16;
}

.first-element-details {
  margin-right: 24px;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  background-color: #2b2b40;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.spinner {
  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #2b2b40; /* Blue */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.email-us {
  color: #262B3E;
}

#create-api-key-modal .input-group {
  margin-top: 16px;
}

#create-api-key-modal .modal-footer {
  flex-wrap: nowrap;
}

#delete-api-key-modal .modal-footer {
  flex-wrap: nowrap;
}

.api-key-table {
  width: 100%;
  height: auto;
}

.api-key-table-actions-cell {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.api-key-modal-result {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.api-key-modal-result > textarea {
  flex: 1 0 auto;
}

.api-key-modal-result > i {
  flex: 0 1 auto;
}

.fullscreen-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 100ms;
  z-index: 9999999;
  visibility: hidden;
}

.fullscreen-loading-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal-disabled {
  pointer-events: none;
}

.modal-result-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
