.btn,
.btn-primary {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.btn {
  background: #6c757d;
  color: #fff;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-secondary {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.btn-secondary:hover {
  background-color: #bfdbfe;
}

.btn-right {
  text-align: right;
  margin-top: 20px;
}

.btn-between {
  display: flex;
  justify-content: center; 
  gap: 20px;
  margin-top: 30px;
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 20px;  
}

#continue-btn {
  padding: 10px 20px;
}

/* File action semantic colors (override generic .btn background) */
.btn.btn-file-view {
  background: #0dcaf0; /* info */
  color:#fff;
}
.btn.btn-file-view:hover,
.btn.btn-file-view:focus { background:#0bb2d4; color:#fff; }

.btn.btn-file-download {
  background:#198754; /* success */
  color:#fff;
}
.btn.btn-file-download:hover,
.btn.btn-file-download:focus { background:#146c43; color:#fff; }

.btn.btn-file-delete {
  background:#dc3545; /* danger */
  color:#fff;
}
.btn.btn-file-delete:hover,
.btn.btn-file-delete:focus { background:#bb2d3b; color:#fff; }

/* Ensure small buttons keep pill radius consistent with theme */
.btn.btn-file-view,
.btn.btn-file-download,
.btn.btn-file-delete { border-radius:999px; font-weight:600; letter-spacing:.3px; }
