
#fileList{
	margin: 10px 0;
}
/* File list items */
.file-item {
  display: flex;
  justify-content: space-between; /* naam left, button right */
  align-items: center;
  padding: 8px 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f9f9f9;  
  font-size: 0.95rem;
  transition: background 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


.file-item:hover {
  background: #fdfdfd;
  transform: translateY(-2px);
  transition: 0.2s;
}

/* File name style */
.file-item span {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  overflow-wrap: anywhere; /* long names wrap ho jayenge */
}

/* Remove button */
.remove-btn {
  margin-left: 15px;
  cursor: pointer;
  border: none;
  color: #e63946;
  font-size: 1.2rem;
  transition: transform 0.2s, color 0.2s;
  border-radius: 50%;
  padding: 6px;
  background: #fff;
}

.remove-btn:hover {
  transform: scale(1.2);
  color: #d00000;
  background: #ffe5e5;
}

/* File size text */
.file-size {
  font-size: 0.9rem;
  color: #444;
}



#fileList + p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

.file-size {
  font-size: 0.95rem;
  color: #222;
  font-weight: 500;
  margin-top: 6px;
}

#warningMsg {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #d62828;
  font-weight: 600;
}

