/* Global Style */
@font-face {
  font-family: "OpenAI";
  font-style: normal;
  font-weight: 400;
  src: url("openai-400.otf");
}
@font-face {
  font-family: "OpenAI";
  font-style: normal;
  font-weight: 600;
  src: url("openai-500.otf");
}
html {
  height: 100%;
  overflow-y: hidden;
}
body {
  font-family: "OpenAI", sans-serif !important;
  font-size: 16px;
  color: #080808;
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100vh;
  --border-color: #e0e0e0;
  --background-grey: #f9f9f9;
  --brand-color: #452D6C;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  text-rendering: optimizeLegibility;
}
input, select, textarea {
  font-family: "OpenAI", sans-serif !important;
}

a {
  color: #080808;
}
a:hover {
  border-bottom: 1px solid black;
}
.text-colored, .text-brand{
  background-image: linear-gradient(90deg,#9b5cff 0,#ee5396);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-brand {
  font-weight: bold;
}
.text-underlined {
  border-bottom: 1px solid black;
}
.button {
  font-size: 0.8rem;
  line-height: 2rem;
  padding: 8px 16px;
  border: 1px solid black!important;
  color: #080808 !important;
  background-color: #fff !important;
  font-weight: bold;
  border: 1px solid #080808;
  cursor: pointer;
  border-radius: 3px;
}
.button:hover {
  background-color: #080808!important;
  color: #fff !important;
}
.button.primary {
  background-color: #452d69 !important;
  border: 1px solid black;
  color: white !important;
  font-size: 1rem;
  background-color: white;
}

.button.primary:hover {
  background-color: white !important;
  border: 1px solid #452d69;
  color: #452d69 !important;
  font-size: 1rem;
  background-color: white;
}
.section {
  scroll-margin-top: 65px;
}
.section.content {
  padding-top: 2rem;
}

/* Header and Footer */
.footer {
  position: sticky;
  top: 100%;
  padding-top: 1rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border-color);
  letter-spacing: .0025em;
  background-color: #f9f9f9!important;
}
.footer .content {
  font-size: .85rem;
  margin-bottom: 2rem;
}
.footer .logo {
  padding-top: 18px;
  margin-right: -10px;
}
.footer .logo img{
  width: 140px
}
.footer .item {
  margin-top: 1rem;
}
.footer .item-title {
  font-weight: 600;
  color: #616161;
}
.footer .copyright {
  font-size: 0.8rem;
}

/* Launchpad Area */
.launchpad {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}

/* .launchpad::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4.5%;
  right: 4.5%;
  height: 1px;
  background-color: var(--border-color);
} */

.launchpad .options {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px){
  .launchpad .options {
    flex-direction: column;
  }
}
.launchpad .option {
  display: flex;
  flex: 0 1 50%;
  padding-top: .6rem;
  padding-bottom: .6rem;
  /* box-shadow: rgba(26, 26, 26, 0.07) 0px 1px 0px 0px; */
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  /* border: 1px solid #e0e0e0; */
  border: 1px solid rgb(182, 182, 182);
  /* border: 1px solid var(--border-color); */
  
  cursor: pointer;
}

.launchpad .option:hover {
  background-color: #f5f5f5;
  border: 1px solid rgba(182, 182, 182, 0.877);
}

.launchpad .option .image {
  flex: 0 0 15%;
  text-align: left;
  margin-left: 2rem;
  align-content: center; 
  font-size: 2rem;
  padding: 0.6rem;
  color: #212121e0;
}
.launchpad .option-large .image {
  flex: 0 0 33%;
  margin-right: 1rem;
}
.launchpad .option .text {
  text-align: left;
  align-content: center; 
  padding-right: 5rem;
  padding-left: 0;
  margin-left: -0.5rem;
}
.launchpad .option .text .line1 {
  font-weight: bold;
  font-size: 1.2rem;
}
.launchpad .option .text .line2 {
  font-size: 0.8rem;
  color: #6e6e6e;
}

.launchpad.secondary {
  background-color: white;
}

/* Table */
.table {
  text-align: center;
  cursor: default;
  font-size: 0.85rem;
  overflow-x: scroll;
}
.table td, .table th {
  vertical-align: middle!important;
  white-space: nowrap;
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table thead {
  background-color: #f5f5f5;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.table thead th {
  border: none!important;
}
.table tbody tr:hover {
  background-color: #f9f9f9;
}
.table tbody tr:last-child {
  border-bottom: 1px solid var(--border-color);
}
.table .badge {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  font-size: .85rem;
  border-radius: .5rem;
  background-color: rgba(0, 0, 0, .06);
  padding: 0px .5rem;
  font-size: .7rem;
}
.table .badge::before {
  content: ' • ';
  font-size: 1.1rem;
  margin-right: .5rem;
  flex: 1;
  position: relative;
  top: -1px;
}
.table .badge.running::before {
  color: #2ecc71;
  flex: 1;
}
.table .actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.table .actions div {
  cursor: pointer;
  line-height: 1.5rem;
}

.dt-container {
  font-size: 0.86rem;
  /* border-top: 1px solid var(--border-color);
  padding-top: .6rem; */
  overflow-y: hidden;
}
.dt-layout-start, .dt-layout-end {
  margin-bottom: .6rem !important;
}
.dt-container .dt-search input[type="search"] {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: .8rem;
  height: 2rem;
  width: 15rem!important;
  border: 1px solid var(--border-color);
  box-shadow: none;
  border-radius: .5rem;
  background-color: var(--background-grey);
  margin-top: 1px;
  margin-right: 1px;
}
.dt-container .dt-search input[type="search"]:focus {
  color: #080808;
}
.dt-container .dt-search input[type="search"]:hover {
  border: 1px solid var(--border-color);
}
.dt-container .dt-search input[type="search"]::placeholder {
  color: #080808;
  opacity: 0.6;
}

.dt-container .dt-search .icon {
  height: 2.1rem!important;
  font-size: .8rem;
  padding-left: 1rem;
}
.dt-container .pagination {
  margin: 0;
}
.dt-container .pagination ul {
  gap: .2rem;
}
.dt-container .pagination li {
  margin-top: 0;
  line-height: 0;
}
.dt-container .pagination a {
  min-width: 1rem;
  height: 1.6rem;
  width: 1.6rem;
  font-size: .6rem;
  margin-left: 0;
  margin-right: 0;
}
.dt-container .pagination a.previous, .dt-container .pagination a.next {
  font-size: 1rem;
}
.dt-container .pagination-link.is-current {
  background-color: #fff; 
  border-color: var(--brand-color);
  color: var(--brand-color);
  font-weight: bold;
}
.dt-container .dt-length .select {
  height: auto;
}
.dt-container > .columns:last-child {
  margin-top: .6rem;
  margin-bottom: .6rem !important;
}
.dt-container .dt-length select {
  font-size: .8rem;
  vertical-align: top!important;
  height: auto;
  border: 1px solid var(--border-color);
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 1rem;
  margin-left: 2px;
}
.dt-container .dt-length .select::after {
  border-width: 2px!important;
  right: .25rem;
}

/* Form */
.form .title {
  font-size: 2rem;
  font-weight: bold;
}
.form .subtitle{
  font-size: 1.2rem;
}
.form .select {
  width: 100%;
}
.form .select select {
  width: 100%;
}
.form .is-grouped {
  align-items: center;
}
.form .submit button {
  width: 100%;
}
.main-form {
  max-width: 860px!important;
}

/* Tooltip Style */
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #212121e0;
  color: transparent;
  font-size: 0;
  margin-left: 5px;
  margin-bottom: 2px;
  line-height: 1;
  cursor: pointer;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: background-color 0.2s ease;
}

.gpu-tooltip {
  position: fixed;
  background: rgba(0, 0, 0, 0.692);
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  max-width: 300px;
  z-index: 1000;
  line-height: 1.5;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.gpu-tooltip.visible {
  opacity: 1;
}

/* Port mapping actions */
.port-mapping-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.port-mapping-actions div {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.port-mapping-actions div:hover {
  background-color: #f5f5f5;
}

.port-mapping-actions i {
  font-size: 16px;
  color: #555;
}

/* Container Table Actions Style */
.actions-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 0;
}

.actions {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  width: max-content;
  margin: 0;
}

/* Custom Terminal Icon */
.terminal-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 8l5 4-5 4'%3E%3C/path%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 8l5 4-5 4'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

/* Custom Link Icon */
.link-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'%3E%3C/path%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'%3E%3C/path%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'%3E%3C/path%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

/* Custom Pencil Icon */
.pencil-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z'%3E%3C/path%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.action-item i.terminal-icon, .action-item i.pencil-icon, .action-item i.link-icon {
  margin-right: 4px;
}

/* Action Items with Icons */
.action-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  min-width: 45px;
  transition: all 0.2s ease;
  border-radius: 6px;
  border: 1px solid transparent;
  margin: 0 2px;
  font-size: 0.85rem;
}

.action-item:hover {
  background-color: #f5f5f5;
  border-color: #eaeaea;
}

.action-item i {
  font-size: 16px;
  margin-right: 6px;
  color: #555;
}

.action-item span {
  font-size: 0.85rem;
  line-height: 1;
  color: #555;
}

/* Table Style */
.main-table table {
  width: 100%;
  border-collapse: collapse;
}

.main-table th {
  text-align: center;
  padding: 10px;
}

.main-table td {
  padding: 15px 10px;
  text-align: center;
}

.main-table th:nth-child(1),
.main-table td:nth-child(1) {
  width: 20%;
}

.main-table th:nth-child(2),
.main-table td:nth-child(2) {
  width: 25%;
}

.main-table th:nth-child(3),
.main-table td:nth-child(3) {
  width: 15%;
}

.main-table th:nth-child(4),
.main-table td:nth-child(4) {
  width: 40%;
}

/* Status Style */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.65rem 0.65rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.2;
  height: 26px;
  background-color: transparent;
  border-width: 1.5px;
  gap: 0.5rem;
}

.status-running {
  color: #0d8921;
  background-color: #0d892116;
}

.job-card:has(.status-running) {
  border-left: 4px solid #0d8921;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.status-pending, .status-containercreating, .status-podinitialized {
  color: #b76e00;
  background-color: rgba(183, 110, 0, 0.05);
}

.status-failed, .status-error, .status-crashloopbackoff {
  color: #c62828;
  background-color: rgba(198, 40, 40, 0.05);
}

.status-completed, .status-succeeded {
  color: #1967d2;
  background-color: #1967d216;
}

.status-unknown, .status-na {
  color: #757575;
  background-color: rgba(117, 117, 117, 0.05);
}

/* Job Card Styles */
.job-card {
  margin-bottom: 0.5rem;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid rgb(182, 182, 182);
  overflow: hidden;
  transition-duration: 0.5s;
  transition-property: box-shadow, background-color;
  padding: 1.5rem 1.25rem 1.5rem 1.25rem;
  color: #080808!important;
}

.job-card:hover {
  background-color: #a8a8a80d;
  box-shadow: #9c9c9c1a 0px 0px 5px 2px;
}

.job-card-header {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  /* border-bottom: 1px solid #f0f0f0; */
}

.job-header-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  flex-wrap: nowrap;
  gap: 1rem;
}

.job-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
  color: #080808;
}

.job-title .status-badge {
  margin-right: 8px;
}

.job-title .job-name {
  word-spacing: 0.4px;
}

/* .expand-icon-container {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  color: #666;
} */

/* Job text display */
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 0;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-meta-value {
  font-size: 0.85rem;
  font-weight: 500;
}

.job-meta-icon {
  font-size: 0.8rem;
  color: #757575db;
}

.job-image {
  font-size: 0.85rem;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-containers {
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  transition: none;
  overflow: hidden;
  background-color: white;
  margin-top: 2rem;
}

/* Job Actions */
.job-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  flex-shrink: 0;
}

.job-action-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #212121e0;
  border: 1px solid #eaeaea;
  background-color: #fcfcfc;
}

.job-action-debug-button {
  background-color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.job-action-debug-button:hover {
  background-color: #f5f5f5;
  border-color: #e0e0e0;
}

.job-action-button:hover {
  background-color: #f5f5f5;
  border-color: #e0e0e0;
}

.job-action-button i {
  font-size: 0.85rem;
  color: #212121e0;
}

.job-action-button span {
  color: #212121e0;
}

/* Adjust job card for small screens */
@media screen and (max-width: 992px) {
  .job-header-top {
    flex-wrap: wrap;
  }
  
  .job-title {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  
  .job-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    gap: 0.3rem;
  }
  
  .job-action-button {
    padding: 0.4rem;
    min-width: 32px;
    justify-content: center;
  }
  
  .job-action-button span {
    display: none;
  }
  
  .job-action-button i {
    margin-right: 0;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .job-header-top {
    flex-wrap: wrap;
  }
  
  .job-title {
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .job-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
  
  .job-action-button {
    padding: 0.5rem;
    min-width: 36px;
    justify-content: center;
  }
  
  .job-action-button span {
    display: none;
  }
  
  .job-action-button i {
    margin-right: 0;
    font-size: 1rem;
  }

  .job-meta {
    gap: 1rem;
  }
  
  .job-meta-item {
    width: calc(50% - 0.5rem);
    margin-bottom: 0.5rem;
  }
}

/* Adjust container table for small screens */
@media screen and (max-width: 992px) {
  .action-item {
    min-width: 30px;
  }
  
  .action-item span {
    display: none;
  }
  
  .action-item i {
    margin-bottom: 0;
    font-size: 16px;
  }

  .container-table .actions {
    gap: 2.5px;
  }
}

/* Container List Styles */
.container-list {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background-color: white;
  box-shadow: none;
  border: none;
}

.container-list-header {
  display: flex;
  background-color: #f7f7f7;
  padding: 0.4rem 0;
  border-bottom: 1px solid #e8e8e8;
  font-weight: 500;
  color: #555;
  text-align: left;
  line-height: 1;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.container-list-item {
  display: flex;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f1f1f1;
  transition: background-color 0.15s ease;
  text-align: left;
  line-height: 1;
  font-size: 0.85rem;
}


.container-list-item:last-child {
  border-bottom: none;
}

.container-list-item .status-badge {
  background-color: unset;
  font-size: 0.9rem;
  border: none;
  font-weight: bold;
}

.container-header-id,
.container-item-id,
.container-header-name,
.container-item-name,
.container-header-gpu,
.container-item-gpu,
.container-header-actions,
.container-item-actions {
  display: flex;
  align-items: center;
  min-height: 24px;
}

.container-header-id,
.container-item-id {
  width: 30%;
  justify-content: flex-start;
  text-align: left;
  padding-left: 15px;
}

.container-header-name,
.container-item-name {
  width: 30%;
  justify-content: flex-start;
  text-align: left;
  padding-left: 15px;
}

.container-header-gpu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 15%;
  text-align: left;
  padding-left: 15px;
}

.container-item-gpu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 15%;
  text-align: left;
  padding-left: 15px;
}

.container-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 25%;
  text-align: left;
  padding-left: 22px;
  min-height: 24px;
}

.container-item-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 25%;
  text-align: left;
  padding-left: 15px;
}

.container-item-name {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.85rem;
  justify-content: flex-start;
  text-align: left;
  padding: 0 2px 0 15px;
}

.container-item-gpu > .horizontal-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
  gap: 8px;
  height: 100%;
  font-size: 0.85rem;
  padding-left: 0;
}

/* Responsive styles for container list */
@media screen and (max-width: 992px) {
  .container-list-header,
  .container-list-item {
    padding: 0.6rem 0.5rem;
  }
  
  .container-header-id,
  .container-item-id {
    width: 25%;
  }
  
  .container-header-name,
  .container-item-name {
    width: 30%;
  }
  
  .container-header-gpu,
  .container-item-gpu {
    width: 15%;
    justify-content: flex-start;
    padding-left: 15px;
  }
  
  .container-header-actions,
  .container-item-actions {
    width: 30%;
    justify-content: flex-start;
    padding-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .container-list-header,
  .container-list-item {
    flex-wrap: wrap;
  }
  
  .container-header-id,
  .container-item-id {
    width: 65%;
    margin-bottom: 0.5rem;
  }
  
  .container-header-gpu,
  .container-item-gpu {
    width: 35%;
    margin-bottom: 0.5rem;
  }
  
  .container-header-name,
  .container-item-name {
    width: 65%;
  }
  
  .container-header-actions,
  .container-item-actions {
    width: 35%;
  }
  
  .horizontal-content {
    justify-content: flex-start;
    width: 100%;
  }
  
  .container-item-id > .horizontal-content,
  .container-item-gpu > .horizontal-content {
    justify-content: flex-start;
    text-align: left;
  }
  
  .container-item-id > div,
  .container-item-gpu > div {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.status-container {
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
}

.id-container {
  display: flex;
  justify-content: center;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.horizontal-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
  gap: 8px;
  height: 100%;
  font-size: 0.85rem;
}

.container-item-id > .horizontal-content {
  justify-content: flex-start;
  padding-left: 0;
}

.container-id-text {
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  line-height: 1;
  text-align: left;
  padding-left: 8px;
}
