
.sidebar {
  width: 20%;
  background-color: #ddd;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center; 
  
}

.sidebar h2 {
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.sidebar nav ul {
  list-style: none;
  padding: 50px;
  border: 5px solid #000000; 
  border-radius: 25px;
}

.sidebar nav ul li {
  margin: 40px 0;
}

.sidebar nav ul li a {
  text-decoration: none;
  color:white;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #888;
  border-radius: 5px;
}

.sidebar nav ul li.active a {
  color: white;
  background-color: black;
  padding: 5px 10px;
  border-radius: 5px;
}

.main-content {
  width: 80%;
  padding: 20px;
}

header h1 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: right;
}


.add-product {
  background-color: #666;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

.add-product:hover {
  background-color: #555;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

table th, table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
}

table th {
  background-color: #f5f5f5;
}

table img {
  width: 40px;
  height: 40px;
  background-color: #ccc;
  border: 1px solid #888;
}

.deactivate {
  background-color: orangered;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}
.deactivate:hover{
  background-color: orangered;
}

.edit {
  background-color: #8BC34A;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.edit:hover {
  background-color: #7CB342;
}

.delete {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.delete:hover {
  background-color: #e53935;
}
.view{
  background-color: yellow;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}
.view:hover{
  background-color: yellow;
}
.add-voucher-button{
  background-color: #666;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-bottom: 20px;
  cursor: pointer;
}
.add-voucher-button:hover {
  background-color: #555;
}


.sidebar nav ul li a:hover {
  background-color: black;
}
.logout-button {

  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.logout-button:hover {
  background-color: #ff1a1a;
}