@charset "UTF-8";

/* src/styles.scss */
.navbar {
  border-bottom: 1px solid #e2e8f0;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
}
.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.nav-links .nav-link {
  text-decoration: none;
  color: #475569;
  transition: color 0.2s ease;
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: #2563eb;
  font-weight: 600;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
}
h1,
.main-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
h2,
.section-heading {
  font-size: 1.875rem;
  font-weight: 600;
  color: #0f172a;
}
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}
.btn.btn-primary:hover {
  background-color: #1d4ed8;
}
.btn.btn-secondary {
  background-color: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn.btn-secondary:hover {
  background-color: #f8fafc;
}
.p-fileupload-basic {
  display: block;
  width: 100%;
}
.p-fileupload-basic .p-button {
  width: 100% !important;
  justify-content: center !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  background: #ffffff !important;
  color: #2563eb !important;
  border: 1px solid #cbd5e1 !important;
}
.p-fileupload-basic .p-button:hover {
  background: #f8fafc !important;
  border-color: #2563eb !important;
}
.primeng-form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 85px;
}
.form-grid-horizontal {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  width: 100%;
}
.form-row-align {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.form-label-fixed {
  width: 140px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  flex-shrink: 0;
  margin: 0;
}
.input-control-cell {
  flex-grow: 1;
  position: relative;
}
.custom-primeng-dropdown,
.p-select {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.p-select {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
:host ::ng-deep .p-component,
::ng-deep .p-component {
}
.subpage-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: calc(100vh - 80px);
  background-color: #f8fafc;
  box-sizing: border-box;
}
.content-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
}
.dashboard-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
}
.sub-heading-tight {
  margin: 0.25rem 0 0 0;
  font-size: 1rem;
  color: #64748b;
}
.header-action-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.large-status-tag {
  padding: 0.5rem 1rem !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  border-radius: 2rem !important;
}
.filter-controls-row {
  display: flex;
  width: 100%;
  gap: 1rem;
  align-items: center;
  box-sizing: border-box;
}
.table-container-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.table-empty-row {
  text-align: center;
  padding: 4rem 2rem !important;
  color: #64748b;
}
.table-empty-row .empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}
.table-empty-row p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}
.font-semibold-cell {
  font-weight: 600;
  color: #0f172a;
}
.custom-primeng-dialog .p-dialog {
  border-radius: 0.75rem !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
}
.custom-primeng-dialog .p-dialog-header {
  background: #ffffff !important;
  border-bottom: 1px solid #f1f5f9 !important;
  padding: 1.25rem 1.5rem !important;
  color: #0f172a !important;
  font-weight: 700 !important;
}
.custom-primeng-dialog .p-dialog-content {
  padding: 1.5rem !important;
  background: #ffffff !important;
}
.dialog-workspace-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
  align-items: stretch;
}
.workspace-panel-half {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
.panel-section-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
}
.dialog-terminal-canvas {
  background: #0f172a;
  border-radius: 0.5rem;
  padding: 1.25rem;
  border: 1px solid #1e293b;
  flex-grow: 1;
  min-height: 420px;
  max-height: 480px;
  overflow-y: auto;
}
.dialog-terminal-text {
  margin: 0;
  font-family:
    "Courier New",
    Courier,
    monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cbd5e1;
  white-space: pre-wrap;
  word-break: break-word;
}
.panel-metadata-tag {
  font-size: 0.75rem;
  color: #64748b;
  font-style: italic;
  margin-top: 0.25rem;
}
.custom-primeng-input {
  width: 100% !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 0.375rem !important;
  padding: 0.75rem !important;
  font-size: 0.95rem !important;
  color: #334155 !important;
  background: #ffffff !important;
  box-sizing: border-box;
  transition: border-color 0.15s ease-in-out;
}
.custom-primeng-input:focus {
  border-color: #3b82f6 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}
.custom-textarea-editor {
  min-height: 280px;
  max-height: 320px;
  resize: vertical;
  font-family: inherit;
}
.inner-form-spacing {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}
.dialog-footer-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  background: #ffffff;
}
.dialog-footer-right-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 960px) {
  .dialog-workspace-split {
    grid-template-columns: 1fr;
  }
  .dialog-terminal-canvas {
    min-height: 250px;
  }
}
.subpage-container {
  padding: 2rem;
  background-color: #f8fafc;
  min-height: 100vh;
}
.content-container {
  max-width: 1200px;
  margin: 0 auto;
}
.main-heading {
  font-size: 2rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.sub-heading {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.vertical-form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}
.upload-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.card-title {
  font-size: 1.15rem;
  color: #1e293b;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.dropzone-wrapper {
  margin-bottom: 0.5rem;
}
.file-info-badge {
  display: flex;
  align-items: center;
  background-color: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
}
.file-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}
.file-name {
  font-weight: 500;
  color: #334155;
  margin: 0;
}
.file-size {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}
.w-full {
  width: 100% !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.custom-primeng-dropdown .p-select,
.custom-primeng-dropdown .p-multiselect {
  width: 100% !important;
}

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