/*
 Theme Name:   WoodMart Child
 Template:     woodmart
 Version:      1.0
*/

 







/* CSS cho bảng sản phẩm */
.wd-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 10px;
  overflow: hidden;
}

/* Header / cột trái */
.wd-entry-content table td:first-child {
  background-color: #f5f5f5;
  font-weight: 600;
  padding: 12px 15px;
  width: 35%;
  color: #333;
}

/* Cột giá trị / cột phải */
.wd-entry-content   table td:last-child {
  padding: 12px 15px;
  color: #555;
}

/* Hover nhẹ để nổi bảng */
.wd-entry-content  table tr:hover td {
  background-color: #f9f9f9;
}

/* Link trong bảng */
.wd-entry-content  table a {
  color: #00b386;
  text-decoration: none;
}

.wd-entry-content  table a:hover {
  text-decoration: underline;
}

/* Responsive: nhỏ màn hình */
@media (max-width: 768px) {
 .wd-entry-content  table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

 .wd-entry-content  table td:first-child {
    background-color: #f5f5f5;
    font-weight: 600;
  }

 .wd-entry-content table td:last-child {
    padding-bottom: 15px;
  }
}













 /* Nút chat */
.wd-entry-content img {
    max-width: 98%!important;
    border-radius: 5px!important;
    border: 1px solid #e8e8e8!important;
    padding: 3px!important;
    background: #dfdfdf3d!important;
}


  /* Nút chat */
  #chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00b386; /* màu xanh Tawk.to */
    color: white;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 9999;
  }
  #chat-toggle:hover {
    transform: scale(1.1);
    background: #009973;
  }

  /* Khung chat iframe */
  #chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 500px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: none; /* Ẩn mặc định */
    z-index: 9998;
  }
