
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

/* .file-progress-container {
    display: none;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.file-progress-bar {
    height: 20px;
    width: 0;
    background-color: #4caf50;
    transition: width 0.2s ease;
}

.file-progress-bar-status {
    margin-top: 10px;
    font-size: 14px;
  } */

/* Updated CSS with orange progress bar that changes to green at 100%  */
.progress-container {
  display: none;
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
  background-color: #f3f3f3;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  height: 20px;
  width: 0;
  background-color: #ff9800; /* Orange color for in-progress */
  transition: width 0.2s ease, background-color 0.3s ease;
}

.progress-bar.complete {
  background-color: #4caf50; /* Green color for completion */
}

.progress-bar-status {
  margin-top: 10px;
  font-size: 14px;
}

/* Make the DD behave like a block‐level alert box */
#kubify_size_display {
    display: block;            /* ensure full width */
    padding: 0.75rem 1rem;     /* nice breathing room */
    margin: 0.5rem 0;          /* spacing from surrounding text */
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  /* Fits: green outline/text */
  #kubify_size_display.text-success {
    background-color: #e6ffed;
    border-color: #a3ffb2;
    color: #1a7f37;
  }
  
  /* Too big: red outline/text */
  #kubify_size_display.alert-danger {
    background-color: #ffeef0;
    border-color: #f9d0d3;
    color: #86181d;
  }


/* @keyframes progress-animation {
    from {
    width: 0;
    }
    to {
    width: 100%;
    }
} */
