
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFF;
}

.header {
  background-color: #F90;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  font-size: 24px;
}

.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.controls {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.search-bar {
  display: flex;
}

.search-bar input {
  flex-grow: 1;
  border: 1px solid #CCC;
  border-radius: 4px 0 0 4px;
  min-width: 240px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

th, td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid #DDD;
}

th {
  background-color: #CCC;
}

.action-buttons a {
  margin-right: 10px;
  color: #0066cc;
  text-decoration: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

input, select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.buttons {
  display: flex;
  justify-content: flex-end;
}

.buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}

.open-modal-button {
  background-color: #EEE;
  color: #333;
  font-size: 24px;
}

.open-modal-button:hover {
  background-color: #FF9900;
}

.cancel {
  background-color: #EEE;
  color: #333;
}

.create {
  background-color: #ff9900;
  color: white;
}

.draggable {
  cursor: move;
}

.dragging {
  opacity: 0.5;
}

.footer {
  background-color: #DDD;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
