#page-title h1 {
  padding: 20px;
}
.custom-modal { 
  position: fixed;
  top: 0;
  left: 226px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
.custom-modal.show {
  display: flex;
}
.custom-modal-content {
  margin: 15% 25%;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.custom-modal-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #dee2e6;
  padding-top: 10px;
  margin-top: 20px;
}
th.sortable {
  cursor: pointer;
}
#addKeywordBtn.add-btn {
  background-color: #B5241D;
  color: #fff;
  font-weight: bold;
}
#addKeywordBtn.add-btn:hover {
  transition-duration: 0.4s;
  background-color: #0B00CF;
  color: #fff;
}
