.saved-composition {
  position: relative;
  background:#1c1c1c;
  border:1px solid #555;
  border-radius:10px;
  margin:1rem auto;
  padding:1rem;
  max-width:600px;
}

.saved-composition h3 {
  margin-top:0;
  color:gold;
}

body { 
  font-family: Arial, sans-serif; 
  margin: 20px; 
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #1c1c1c;   
  color: white;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: red;
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 5px;
}

.material-row {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

.remove-btn {
  background: red;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 2px 6px;
}


.remove-btn:hover {
  background: darkred;
}
