/* Energy Label Styles */
.energylabel-icon {
  display: inline-block;
  width: 60px;
  height: 120px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  color: white;
  text-align: center;
  line-height: 120px;
  vertical-align: middle;
  margin: 0 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.energylabel-aplus3 {
  background-color: #38A335;
  position: relative;
}

.energylabel-aplus3::after {
  content: 'A+++';
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

.energylabel-aplus2 {
  background-color: #51BA38;
}

.energylabel-aplus2::after {
  content: 'A++';
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

.energylabel-aplus {
  background-color: #6FBF3E;
}

.energylabel-aplus::after {
  content: 'A+';
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

.energylabel-a {
  background-color: #96CD3E;
  line-height: 120px;
}

.energylabel-b {
  background-color: #D0CE38;
  line-height: 120px;
}

.energylabel-c {
  background-color: #F9C936;
  line-height: 120px;
}

.energylabel-d {
  background-color: #F5A632;
  line-height: 120px;
}

.energylabel-e {
  background-color: #ED7C31;
  line-height: 120px;
}

.energylabel-f {
  background-color: #E41C1C;
  line-height: 120px;
}

.energylabel-g {
  background-color: #A93223;
  line-height: 120px;
}

/* SVG Icons */
.energylabel-svg {
  display: inline-block;
  width: 60px;
  height: 120px;
  margin: 0 5px;
  vertical-align: middle;
}

.energylabel-inline {
  width: 42px;
  height: 30px;
  margin: 0 2px;
}

/* Table cell styling */
td.energylabel-cell {
  text-align: center;
  padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .energylabel-icon,
  .energylabel-svg {
    width: 50px;
    height: 100px;
    font-size: 16px;
  }

  .energylabel-inline {
    width: 36px;
    height: 72px;
  }
}

