@font-face {
  font-family: poppins;
  src: url(font/Poppins-Regular.woff);

}

@font-face {
  font-family: poppins-ExtraBold;
  src: url(font/Poppins-ExtraBold.woff);

}

@font-face {
  font-family: poppins-Medium;
  src: url(font/poppins-medium-webfont.woff);

}

@font-face {
  font-family: poppins-Semibold;
  src: url(font/poppins-semibold-webfont.woff);

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html{
 font-family: "Poppins";
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  min-height: 100vh;
  /* padding: 20px; */
}
.main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.cust-navbar {
  background-color: #336aea;
}
.cust-navbar .navbar-nav .nav-link {
  color: white;
}

.cust-navbar .navbar-nav .nav-link.active {
  font-weight: 600;
}

.cust-navbar .navbar-brand {
  color: white;
}
.navbar-brand {
    font-weight: 700;
}

.header {
  display: flex;
  justify-content: center;
}
.header-badge {
  background: #4285f4;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 30px;
  font-weight: 500;
}

.title {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.title-accent {
  color: #4285f4;
}

.subtitle {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.batch-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.batch-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.batch-icon {
  width: 24px;
  height: 24px;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.batch-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.batch-subtitle {
  color: #666;
  font-size: 14px;
}

.format-section {
  margin-bottom: 20px;
}

.format-label {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 500;
}

.format-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.format-select {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  appearance: none;
  cursor: pointer;
  position: relative;
}

.format-select:focus {
  outline: none;
  border-color: #4285f4;
}

.apply-btn {
  background: #4285f4;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.apply-btn:hover {
  background: #3367d6;
}

.format-note {
  text-align: left;
  color: #666;
  font-size: 12px;
  margin-top: 8px;
}

.upload-area {
  border: 3px dashed #e0e0e0;
  border-radius: 12px;
  padding: 60px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.upload-area:hover {
  border-color: #4285f4;
  background: #f8f9ff;
}

.upload-area.dragover {
  border-color: #4285f4;
  background: #f0f4ff;
}

.upload-icon {
  width: 60px;
  height: 60px;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

.upload-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  justify-content: center;
}

.upload-subtext {
  color: #666;
  font-size: 14px;
  display: flex;
  justify-content: center;
}

.hidden {
  display: none;
}

.progress-section {
  margin-top: 30px;
}

.success-badge {
  background: #4caf50;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}

.success-icon {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.file-count {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.progress-label {
  text-align: left;
  color: #333;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4caf50, #66bb6a);
  width: 0%;
  transition: width 0.3s ease;
}

.progress-percentage {
  text-align: right;
  font-size: 14px;
  color: #666;
  margin-top: -18px;
  margin-bottom: 20px;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: #4285f4;
  color: white;
}

.btn-primary:hover {
  background: #3367d6;
}

.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.btn-secondary {
  background: transparent;
  color: #666;
  border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

.file-list {
  margin-top: 30px;
  display: flex;
  /* gap: 20px; */
  flex-wrap: wrap;
  justify-content: space-between;
}

.file-item {
  flex: 0 0 48%;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  width: 50%;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.file-icon {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
}

.file-details {
  flex: 1;
  margin-left: 20px;
}

.file-name {
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70px;
}

.file-size {
  color: #666;
  font-size: 12px;
}

.file-format {
  margin-top: 15px;
}

.format-row-file {
  display: flex;
  align-items: center;
  gap: 10px;
}

.format-select-file {
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 12px;
  background: white;
  min-width: 80px;
}

.warning-text {
  color: #ff9800;
  font-size: 12px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.add-more-btn {
  background: transparent;
  color: #4285f4;
  border: 1px solid #4285f4;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 20px;
}

.add-more-btn:hover {
  background: #f0f4ff;
}

.file-preview {
  width: 100px;
  border-radius: 20px;
  height: 100px;
  object-fit: cover;
}

@media (max-width: 600px) {
  /*.container {*/
  /*  padding: 20px;*/
  /*}*/

  .title {
    font-size: 36px;
  }

  .format-row {
    flex-direction: column;
    align-items: stretch;
  }

  .action-buttons {
    flex-direction: column;
  }

  .file-item {
    flex: 0 0 100%;
  }
}

input[type="range"] {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  /* width: 100%; */
  cursor: pointer;
  outline: none;
  /*  slider progress trick  */
  overflow: hidden;
  border-radius: 16px;
}

/* Track: webkit browsers */
input[type="range"]::-webkit-slider-runnable-track {
  height: 15px;
  background: #ccc;
  border-radius: 16px;
}

/* Track: Mozilla Firefox */
input[type="range"]::-moz-range-track {
  height: 15px;
  background: #ccc;
  border-radius: 16px;
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  height: 15px;
  width: 15px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #4285f4;
  /*  slider progress trick  */
  box-shadow: -407px 0 0 400px #4285f4;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
  height: 15px;
  width: 15px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #f50;
  /*  slider progress trick  */
  box-shadow: -407px 0 0 400px #f50;
}

.section-bg {
    background-color: #e1e9fc;
    padding: 40px;
    border-radius: 10px;
}
