.inner-step-content {
  display: none;
}

.inner-step-content.active {
  display: block;
}

.inner-next-btn {
  /*color: #3dd865 !important;
  border-color: #262732;*/
  border-radius: 47px;
	border: none;
  font-size: 13px;
  font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 300 !important;
  /*background-color: #1d1f2b;*/
  color: white;
	background: linear-gradient(to right, #028925, #3dd865);
  cursor: pointer;
  padding: 10px 20px;
  margin-top: 20px;
}

.inner-next-btn:hover {
  background-color: #3dd865;  
}

#finish-btn {
    width:  100%;
    margin-top: -7px;
	font-size: 17px;
	font-weight: bold !important;
}

textarea {
  width: 100%;
	min-height: 127px;
	background: #171719;
  color:  white;
  border: 1px solid #028925;
  border-radius: 7px;
  padding: 7px;
  margin-top: 7px;
}

textarea:focus {
  color: white;
  border: 1px solid #3dd865;
}

/* button {
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 47px;
}

button:hover {
  background-color: #45a049;
} */

#pdf-list-wrapper {
	display: block;
	width: 100%;
}

#pdf-list {
    padding: 0px;
}

#pdf-list li {
    display: flex;
    justify-content: space-between;
	margin-bottom: 17px;
}

#url-list-wrapper {
	margin-top: 20px;
}

#url-list {
    padding: 0px;
}

#url-list li {
    display: flex;
    justify-content: space-between;
	margin-bottom: 17px;
}

.progress-item {
	margin-top: 7px;
}

.progress-item p, #pdf-list li span, #url-list li span {
	color: #f5f5f5;
	line-height: 1rem;
	font-weight: 300;
	font-size: 11px;
}

.indeterminate-progress-bar {
	margin: 7px 0px !important;
}

/* Drag and Drop styles */	
.upload-section {
	display: flex;
	flex-direction: column; /* Stack the children vertically */
	gap: 20px; /* Space between sections */
	margin-bottom: 7px;
}

.url-section {
	margin-top: 20px;
}

.url-input-section {
	display: flex;
	justify-content: space-between;
}

.url-input-section input {
	background: #28282B;
    border: 1px solid #028925;
	padding: 0 17px;
    border-radius: 7px;
	flex-grow: 1;
	margin-right: 7px;
	color: #f5f5f5;
}

.drag-drop-area {
  background: #28282B;
  border: 2px dashed #028925;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  padding: 27px 20px;
  margin: 7px 0px;
  transition: border 0.3s ease, background 0.3s ease;
}

.drag-drop-area h3.noto-title {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
}

.upload-btn {
  background-color: #028925;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.upload-btn:hover {
  background-color: #3dd865;
}

.drag-hint {
  font-size: 14px;
  color: #028925;
  margin-top: 15px;
}

/* Drag and drop area styles */
.drag-drop-area.drag-over {
  border-color: #5745e8;
  background-color: #f0f0f0;
}

.drag-drop-area.drag-over .drag-hint {
  color: #5745e8;
}

/* Adding padding and box-shadow to the button area */
.upload-btn-container {
  padding-top: 10px;
  padding-bottom: 0px;
/* 	position: relative; */
}

.upload-btn-container button {
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #028925;
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.upload-btn-container button:hover {
  background-color: #3dd865;
}

/* Hover effect for drag-and-drop zone */
.drag-drop-area.drag-over {
  border-color: #6c63ff;
  background-color: #f0f4fd;
}