/* --- UNIVERSAL & RESETS --- */
*:fullscreen, *:-webkit-full-screen, *:-moz-full-screen {
  background-color: transparent;
}

h2 {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 15px;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
  color: #ffffff;
  background-color: #0c1c33 !important;
  background-image: radial-gradient(circle at center, #112745 0%, #060e1c 100%) !important;
}


/* ===== CSS ===== */
#promptBar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(10, 10, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 60px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  width: auto;
  max-width: 900px;
  min-width: 500px;
  transition: all 0.3s ease;
}

#promptBar:hover {
  border-color: rgba(0, 175, 255, 0.4);
  box-shadow: 0 8px 50px rgba(0, 175, 255, 0.15);
}

#promptInput {
  flex: 1;
  padding: 14px 24px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
  outline: none;
  min-width: 280px;
  transition: all 0.3s ease;
  font-family: inherit;
}

#promptInput::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

#promptInput:focus {
  border-color: #00AFFF;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 175, 255, 0.1);
}

#promptSubmit {
  padding: 12px 34px;
  border-radius: 40px;
  border: none;
  background: #00AFFF;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 175, 255, 0.3);
  letter-spacing: 0.5px;
  font-family: inherit;
}

#promptSubmit:hover {
  background: #0088cc;
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(0, 175, 255, 0.5);
}

#promptSubmit:active {
  transform: scale(0.97);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  #promptBar {
    top: 12px;
    padding: 10px 18px;
    min-width: unset;
    width: calc(100% - 30px);
    max-width: 100%;
    border-radius: 40px;
    gap: 10px;
  }
  
  #promptInput {
    padding: 10px 16px;
    font-size: 14px;
    min-width: 120px;
  }
  
  #promptSubmit {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #promptBar {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px 12px;
  }
  #promptInput {
    font-size: 12px;
    padding: 8px 12px;
    min-width: 80px;
  }
  #promptSubmit {
    font-size: 11px;
    padding: 6px 14px;
  }
}

/* --- LEFT SIDEBAR --- */
.leftBox {
  background: rgba(10, 10, 20, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
  top: 0px;
  width: 200px;
  height: 100vh;
  padding: 13px;
  position: absolute;
  z-index: 2;
  display: none;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}



.furniture-item {
    padding: 8px 12px !important;
    margin-bottom: 5px !important;
    text-align: left !important;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.furniture-item:hover {
    background: #f5f5f5 !important;
    border-color: #08d !important;
    transform: translateX(3px);
}

.furniture-item img {
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#boxFurniture image {
    pointer-events: none;
    object-fit: contain;
}

#boxFurniture path[fill^="url(#thumb_"] {
    stroke: #888;
    stroke-width: 1px;
    stroke-dasharray: none;
}


/* #panel: overflow visible so absolutely-positioned sub-menus can escape right.
   The ul inside scrolls vertically so all buttons are reachable. */
#panel {
  overflow: visible !important;
  height: auto !important;
}

#panel > ul {
  overflow-y: auto !important;
  overflow-x: visible !important;
  max-height: 100vh !important;
  padding-bottom: 20px !important;
  box-sizing: border-box !important;
}

/* Sub-menus: keep absolute positioning from inline style, just fix appearance */
/* --- SUB MENUS (Fixed Positioning) --- */
#door_list,
#window_list,
#energy_list,
#layer_list {
  background: rgba(15, 25, 45, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(0, 175, 255, 0.3) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7) !important;
  color: #fff !important;
  
  /* CRITICAL: Use fixed to escape the sidebar scroll */
  position: fixed !important; 
  left: 200px !important; 
  z-index: 9999 !important;
  
  /* Reset these so JS can control them */
  top: 0;
  bottom: auto !important;
  margin: 0 !important;
}

/* --- SCROLLBAR REFINEMENT --- */
/* --- MODERN TINY BLUE SCROLLBAR --- */
/* Target the specific scrollable list inside the panel */
#panel > ul::-webkit-scrollbar {
  width: 4px; /* Tiny width */
}

#panel > ul::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

#panel > ul::-webkit-scrollbar-thumb {
  background: #024a6b; /* Signature Blue */
  border-radius: 10px;
}

/* --- PANEL ADJUSTMENTS --- */
#panel {
  display: block;
  left: -200px;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
  transition-delay: 250ms;
  overflow: visible !important; /* Let menus pop out */
  padding-right: 0 !important; /* Ensure scrollbar hits the right wall */
}

#panel > ul {
  list-style: none;
  margin: 0;
  padding: 13px; /* Keep internal spacing for buttons */
  overflow-y: auto !important;
  overflow-x: visible !important;
  max-height: 100vh !important;
  box-sizing: border-box;
}
#panel > ul::-webkit-scrollbar-thumb:hover {
  background: #008ecc; /* Slightly darker on hover */
}
.leftBox::-webkit-scrollbar {
  width: 6px;
}
.leftBox::-webkit-scrollbar-track {
  background: transparent;
}
.leftBox::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.leftBox::-webkit-scrollbar-thumb:hover {
  background: #00AFFF;
}

#panel {
  display: block;
  left: -200px;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
  transition-delay: 250ms;
}

/* --- TOP AREA DISPLAY --- */
#areaValue {
  position: absolute;
  top: 0;
  left: 210px;
  padding: 5px;
  color: #ffffff;
  font-size: 1.5em;
  z-index: 50;
}

header { display: none; font-size: 11px; }

/* --- GRID --- */
#smallGrid path {
  stroke: rgba(255, 255, 255, 0.1) !important;
}
#grid path {
  stroke: rgba(255, 255, 255, 0.3) !important;
}

/* --- COLOR SELECTORS --- */
.color {
  width: 30px;
  height: 30px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  transition: 0.15s;
  margin-right: 5px;
  float: left;
}
.color:hover {
  border: 0.5px solid #00AFFF;
  transform: scale(1.3);
}

.tool_color {
  float: left;
  width: 30px;
  height: 30px;
  margin: 2.2px;
}

/* --- HOVER BOXES --- */
.boxMouseOver {
  transition: 0.2s;
  border: 3px solid transparent;
}
.boxMouseOver:hover {
  border: 3px solid #00AFFF;
  border-radius: 3px;
  cursor: pointer;
}

/* --- BUTTONS --- */
.btn {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.3s;
  margin-bottom: 6px;
  cursor: pointer;
  text-align: center;
}
.btn:hover {
  background: rgba(0, 175, 255, 0.25);
  border-color: #00AFFF;
  box-shadow: 0 0 12px rgba(0, 175, 255, 0.4);
  color: #ffffff;
}

.btn-success { background: rgba(40, 167, 69, 0.2) !important; border-color: rgba(40, 167, 69, 0.4) !important; }
.btn-success:hover { background: rgba(40, 167, 69, 0.4) !important; border-color: rgba(40, 167, 69, 0.8) !important; }
.btn-danger { background: rgba(220, 53, 69, 0.2) !important; border-color: rgba(220, 53, 69, 0.4) !important; }
.btn-danger:hover { background: rgba(220, 53, 69, 0.4) !important; border-color: rgba(220, 53, 69, 0.8) !important; }

.fully { width: 100%; }
.halfy { width: 47%; }


/* --- EXPORT BUTTON BLUE SHADE --- */
.btn-export {
  background: rgba(0, 175, 255, 0.2) !important;
  border: 1px solid rgba(0, 175, 255, 0.5) !important;
  color: #ffffff !important;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-export:hover {
  background: rgba(0, 175, 255, 0.4) !important;
  border-color: #00AFFF !important;
  box-shadow: 0 0 20px rgba(0, 175, 255, 0.6) !important;
  transform: translateY(-1px);
}

/* --- UTILITY SPACING --- */
.gap-2 {
  gap: 0.5rem !important;
}

/* Ensure halfy buttons actually take 50% minus the gap */
.halfy {
  width: 48% !important;
  margin-bottom: 0 !important;
}

/* --- ROOM COLORS --- */
.roomColor {
  transition: all .1s ease-in-out;
  float: left;
  width: 36px;
  height: 36px;
  border-radius: 5px 5px 18px 5px;
  margin: 3px;
}
.roomColor:hover {
  transform: scale(1.1);
  cursor: pointer;
  border: 1px solid #00AFFF;
}

/* --- SLIDERS --- */
input[type=range] {
  -webkit-appearance: none;
  margin: 18px 0;
  width: 100%;
  background: transparent;
}
input[type=range]:focus { outline: none; }
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  border: 0.2px solid rgba(255,255,255,0.1);
}
input[type=range]::-webkit-slider-thumb {
  border: 1px solid #000000;
  height: 20px;
  width: 16px;
  border-radius: 3px;
  background: #00AFFF;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6px;
  box-shadow: 0 0 8px rgba(0, 175, 255, 0.5);
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: rgba(255, 255, 255, 0.3);
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.3px;
  border: 0.2px solid rgba(255,255,255,0.1);
}
input[type=range]::-moz-range-thumb {
  border: 1px solid #000000;
  height: 20px;
  width: 16px;
  border-radius: 3px;
  background: #00AFFF;
  cursor: pointer;
}
input[type=range]::-moz-focus-outer { border: 0; }

/* --- MODAL BOX (Custom) --- */
.modalBox {
  position: absolute;
  display: none;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1000;
}
.modalBox::after {
  content: "";
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9));
  opacity: 0.7;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  position: absolute;
  z-index: -1;
}
.modalBoxContent {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 300px;
  border-radius: 16px;
  background: rgba(20, 20, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.5em;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  animation-name: animatetop;
  animation-duration: 0.3s;
}

@keyframes animatetop {
  from { top: -300px; opacity: 0; }
  to { top: 0; opacity: 1; }
}
@keyframes animatedown {
  from { top: 0px; opacity: 1; }
  to { top: -300px; opacity: 0; }
}

/* --- BOOTSTRAP MODAL --- */
#myModal {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background-color: rgba(0, 0, 0, 0.4) !important;
}
#myModal .modal-content {
  background: rgba(20, 20, 30, 0.85) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
#myModal .modal-header,
#myModal .modal-title,
#myModal p {
  color: #ffffff !important;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
#myModal .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* --- FUNKY RADIOS --- */
.funkyradio div {
  clear: both;
  overflow: hidden;
}
.funkyradio label {
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: normal;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.2);
}
.funkyradio input[type="radio"]:empty,
.funkyradio input[type="checkbox"]:empty {
  display: none;
}
.funkyradio input[type="radio"]:empty ~ label,
.funkyradio input[type="checkbox"]:empty ~ label {
  position: relative;
  line-height: 2.5em;
  text-indent: 3.25em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.funkyradio input[type="radio"]:empty ~ label:before,
.funkyradio input[type="checkbox"]:empty ~ label:before {
  position: absolute;
  display: block;
  top: 0; bottom: 0; left: 0;
  content: '';
  width: 2.5em;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px 0 0 3px;
}
.funkyradio input[type="radio"]:hover:not(:checked) ~ label,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label {
  color: #ccc;
}
.funkyradio input[type="radio"]:hover:not(:checked) ~ label:before,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: rgba(255,255,255,0.3);
}
.funkyradio input[type="radio"]:checked ~ label,
.funkyradio input[type="checkbox"]:checked ~ label {
  color: #fff;
  border-color: #00AFFF;
}
.funkyradio input[type="radio"]:checked ~ label:before,
.funkyradio input[type="checkbox"]:checked ~ label:before {
  content: '\2714';
  text-indent: .9em;
  color: #fff;
  background-color: #00AFFF;
}
.funkyradio input[type="radio"]:focus ~ label:before,
.funkyradio input[type="checkbox"]:focus ~ label:before {
  box-shadow: 0 0 0 3px rgba(0,175,255,0.4);
}
.funkyradio-default input[type="radio"]:checked ~ label:before,
.funkyradio-default input[type="checkbox"]:checked ~ label:before {
  color: #333; background-color: #ccc;
}
.funkyradio-primary input[type="radio"]:checked ~ label:before,
.funkyradio-primary input[type="checkbox"]:checked ~ label:before {
  color: #fff; background-color: #337ab7;
}
.funkyradio-success input[type="radio"]:checked ~ label:before,
.funkyradio-success input[type="checkbox"]:checked ~ label:before {
  color: #fff; background-color: #5cb85c;
}
.funkyradio-danger input[type="radio"]:checked ~ label:before,
.funkyradio-danger input[type="checkbox"]:checked ~ label:before {
  color: #fff; background-color: #d9534f;
}
.funkyradio-warning input[type="radio"]:checked ~ label:before,
.funkyradio-warning input[type="checkbox"]:checked ~ label:before {
  color: #fff; background-color: #f0ad4e;
}
.funkyradio-info input[type="radio"]:checked ~ label:before,
.funkyradio-info input[type="checkbox"]:checked ~ label:before {
  color: #fff; background-color: #5bc0de;
}

/* --- SVG CANVAS ELEMENTS --- */
.area {
  display: block;
  color: #34e0be;
  font-size: 12.5px;
  font-weight: normal;
}
.ovv { transition: all 0.1s; }
.circle_css { fill: #5cba79; fill-opacity: 0.9; transition: all 0.4s; }
.circle_css_2 { stroke: #5cba79; stroke-width: 0; fill: #5cba79; fill-opacity: 0.9; animation: myAnim 0.6s linear infinite; }
@keyframes myAnim {
  0% { stroke-width: 0; }
  50% { stroke-width: 8; }
  100% { stroke-width: 0; }
}
@keyframes myAnim2 {
  0% { stroke-width: 4; }
  50% { stroke-width: 7; }
  100% { stroke-width: 4; }
}
.circle_css_3 { stroke: #5cba79; stroke-width: 5; fill: #d7f00b; fill-opacity: 1; transition: all 0.4s; }
.circleGum { fill-opacity: 0.2; fill: #e1f410; stroke-width: 4; stroke: #5cba79; transition: all 0.5s; animation: myAnim2 0.6s linear infinite; }
.line_css { stroke: transparent; stroke-width: 15; transition: all 0.2s; }
.trash_css { stroke: transparent; stroke-width: 5; transition: all 0.2s; }
.trash_css:hover { stroke: #f00; stroke-width: 5; stroke-opacity: 0.5; cursor: pointer; }

/* --- SUB MENUS (Energy, Layers, Doors, Windows, etc.) --- */
/* These menus have heavy inline styles so we need !important on everything */
#door_list,
#window_list,
#energy_list,
#layer_list {
  background: rgba(15, 25, 45, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(0, 175, 255, 0.3) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7) !important;
  color: #fff !important;
  z-index: 9999 !important;
}

/* Override the white text-on-white problem for buttons inside sub menus */
#door_list .btn,
#window_list .btn,
#energy_list .btn,
#layer_list .btn {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
#door_list .btn:hover,
#window_list .btn:hover,
#energy_list .btn:hover,
#layer_list .btn:hover {
  background: rgba(0, 175, 255, 0.25) !important;
  border-color: #00AFFF !important;
  color: #fff !important;
}

#energy_list p,
#layer_list p {
  color: #ffffff !important;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Inner bordered boxes in the energy menu */
#energy_list > div > div {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
}

/* Funky radio labels inside layer_list */
#layer_list .funkyradio label {
  color: rgba(255, 255, 255, 0.85) !important;
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.1) !important;
}

/* --- PRINT --- */
@media print {
  .leftBox { display: none; }
  header { display: block; }
  #boxScale { display: none; }
  #boxbind { display: none; }
  #moveBox { display: none; }
  #zoomBox { display: none; }
  #boxinfo { display: none; }
  #lin { height: 19cm; width: 27cm; }
  #boxgrid { height: 19cm; width: 27cm; }
  #areaValue { left: 0px; top: 10px; color: #000; background: none; border: none; box-shadow: none; }
  *, *:before, *:after, *:first-letter, p:first-line, div:first-line, blockquote:first-line, li:first-line {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
}

#ex1Slider .slider-selection {
  background: #bec7cd;
}

/* Ensure exported room text and measurements are visible on white */
@media screen {
  /* Target elements inside the cloned SVG during export */
  #lin text {
      paint-order: stroke;
      stroke: #ffffff;
      stroke-width: 0.5px; /* Adds a small halo to text if it's light-colored */
  }
}

/* Ensure walls have a clear fill color for the export */
#boxwall path {
  fill: #666666 !important; /* Forces a dark gray for walls in the image */
  stroke: #333333 !important;
}

/* --- 7. MODAL PANELS (Welcome & Text Editor) --- */
.modal-content {
  background: rgba(10, 10, 20, 0.9) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.modal-header, .modal-footer {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%); /* Makes the 'X' button white */
}

/* --- 8. TEXT EDITOR SPECIFIC --- */
#labelBox {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  min-height: 50px;
  padding: 10px;
  border-radius: 5px;
  outline: none;
}

#labelBox:focus {
  border-color: #00AFFF !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Fix for the Welcome screen images labels */
#recover p {
  color: rgba(255, 255, 255, 0.8);
}

.boxMouseOver {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 5px;
}
/* --- FURNITURE SUB MENU (Match other sub-menus) --- */
#furniture_list {
  background: rgba(15, 25, 45, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(0, 175, 255, 0.3) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7) !important;
  color: #fff !important;
  z-index: 9999 !important;
}

/* Style for buttons inside furniture_list */
#furniture_list .btn {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  margin-bottom: 5px;
  width: 100%;
  text-align: center;
}

#furniture_list .btn:hover {
  background: rgba(0, 175, 255, 0.25) !important;
  border-color: #00AFFF !important;
  color: #fff !important;
}