@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";

/* src/styles.css */
body {
  background-color: #2a2a2a;
  color: #e8e8e8;
  font-family: "Inter", sans-serif;
  padding-bottom: 80px;
}
button {
  background-color: #3b82f6;
  color: #e8e8e8;
}
button:hover {
  background-color: #2563eb;
}
a {
  color: #60a5fa;
}
hr {
  color: #3a3a3a;
  background-color: #3a3a3a;
  border: none;
  height: 1px;
}
.btn {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 44px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn:hover {
  background-color: #2563eb;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}
.btn:active {
  background-color: #1d4ed8;
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}
.btn:disabled {
  background-color: #6b7280;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}
.header {
  background-color: #2d2d2d;
  padding: 20px 30px;
  margin: -20px -20px 30px -20px;
  h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
  }
}
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #1a1a1a;
}
.form-section {
  background-color: #2d2d2d;
  border: 1px solid #3d3d3d;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
  }
}
.form-group {
  margin-bottom: 20px;
  label {
    display: block;
    margin-bottom: 8px;
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 500;
  }
  input[type=text],
  input[type=password],
  input[type=email],
  input[type=number],
  input[type=date],
  select,
  textarea {
    width: 95%;
    padding: 12px 16px;
    background-color: #1a1a1a;
    border: 1px solid #3d3d3d;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    &:focus {
      outline: none;
      border-color: #4d90fe;
      box-shadow: 0 0 0 3px rgba(77, 144, 254, 0.1);
    }
    &.invalid {
      border-color: #ff4444;
    }
    &.valid {
      border-color: #00d4aa;
    }
    &::placeholder {
      color: #666666;
    }
  }
  textarea {
    resize: vertical;
    min-height: 100px;
  }
  select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23b0b0b0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
}
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.radio-item,
.checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  input[type=checkbox],
  input[type=radio] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #4d90fe;
  }
  label {
    margin-bottom: 0;
    cursor: pointer;
    color: #ffffff;
  }
}
.error,
.success {
  margin-top: 8px;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 4px;
}
.error {
  background-color: rgba(255, 68, 68, 0.1);
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.3);
}
.success {
  background-color: rgba(0, 212, 170, 0.1);
  color: #00d4aa;
  border: 1px solid rgba(0, 212, 170, 0.3);
}
.helper-text {
  font-size: 12px;
  color: #808080;
  margin-top: 6px;
}
.required {
  color: #ff4444;
}
.button-group {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    &:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
  }
  .btn-primary {
    background-color: #4d90fe;
    color: #ffffff;
    &:hover:not(:disabled) {
      background-color: #357ae8;
    }
  }
  .btn-secondary {
    background-color: #3d3d3d;
    color: #ffffff;
    &:hover {
      background-color: #4d4d4d;
    }
  }
}
table.table-select tr {
  cursor: pointer;
  transition: all 0.2s ease;
}
table.table-select tr:hover {
  background-color: rgba(34, 197, 94, 0.08);
}
table.table-select tr.selected {
  background-color: rgba(34, 197, 94, 0.15);
  border: 2px solid #22c55e;
  border-left: 4px solid #22c55e;
}
table.table-select tr.selected-accent {
  background-color: rgba(34, 197, 94, 0.12);
  border-left: 4px solid #22c55e;
  box-shadow: inset 1px 0 0 rgba(34, 197, 94, 0.3);
}
.table-scroll-container {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}
.table-scroll-container::-webkit-scrollbar {
  width: 8px;
}
.table-scroll-container::-webkit-scrollbar-track {
  background: #2a2a2a;
}
.table-scroll-container::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 4px;
}
.table-scroll-container::-webkit-scrollbar-thumb:hover {
  background-color: #777;
}
.table-scroll-container {
  scrollbar-width: thin;
  scrollbar-color: #555 #2a2a2a;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-E3HR5DAC.css.map */
