.menu-menu {
    width:600px;
    background-color: yellow;
    color: blue;
}

.workshop-table {
  width: 100%;
  border-collapse: collapse;
  background: #f8f3e7;
  border: 4px solid #5a3a1e;
  border-radius: 12px;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 0 25px rgba(0,0,0,0.25);
}

/* --- Wooden Header --- */
.workshop-table thead th {
  color: #fff8e6;
  padding: 16px;
  font-size: 1.15rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 3px #3a1f0f;
  border-bottom: 4px solid #3a1f0f;
  position: relative;
}

/* Brass screw effect in header corners */
.workshop-table thead th::before,
.workshop-table thead th::after {
  content: "";
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #d4b26a 20%, #8a6a32 80%);
  border-radius: 50%;
  position: absolute;
  top: 6px;
}

.workshop-table thead {
  background-color: #F82938;;
}

.workshop-table thead th::before {
  left: 8px;
}

.workshop-table thead th::after {
  right: 8px;
}

/* --- Table Rows --- */
.workshop-table tbody tr {
  background: #fffdf8;
  transition: background 0.3s, transform 0.2s;
}

.workshop-table tbody tr:nth-child(even) {
  background: #f3e9d9;
}

/* Hover: slight lift like a wooden plank being picked up */
.workshop-table tbody tr:hover {
  background: #fff7e0;
  transform: translateX(4px);
}

/* --- Table Cells --- */
.workshop-table td {
  padding: 14px;
  border-bottom: 1px solid #d2c2a8;
  color: #3a2a1a;
  font-size: 1rem;
}

/* --- Buttons (Elf Workshop Style) --- */
.workshop-table button {
  padding: 7px 14px;
  margin-right: 6px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

/* Edit Button — Elf Green */
.edit-btn {
  background: #1f7a1f;
  color: #fff;
}

.edit-btn:hover {
  background: #259925;
  transform: scale(1.07);
}

/* Delete Button — Workshop Red */
.delete-btn {
  background: #b22222;
  color: #fff;
}

.delete-btn:hover {
  background: #d62828;
  transform: scale(1.07);
}

/* The switch - the box around the slider */

/* The switch - the box around the slider */

/* The switch - the box around the slider */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:focus + .slider {
  box-shadow: 0 0 1px green;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}