    /*
    Theme Name: trimunykhoa
    Template: trimunykhoa
    Theme URI: https://trimun.dalieuhanoi.com.vn
    Author: Phòng khám Da Liễu Hà Nội
    Author URI: https://trimun.dalieuhanoi.com.vn
    Description: Giao diện chính thức của Phòng khám Da Liễu Hà Nội
    Version: 1.0
    Text Domain: trimunykhoa
    */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #f9f9f9;
 
}

.container {
  
  max-width: 400px;
  margin: 0 auto;
 
}
.image-center {
    text-align:center;
}
.hero {
  background: linear-gradient(to right, #ff6a00, #ee0979);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}


.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: 5px;
}

.countdown span {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
}

.countdown label {
  font-size: 0.9em;
}

.slots {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #fff;
  color: #ee0979;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #f1f1f1;
}

section {
  padding: 40px 0;
  background-color: #fff;
  margin-bottom: 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ee0979;
}

section h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

section ul,
section ol {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
  line-height: 1.6;
}

.cta {
  background: linear-gradient(to right, #ff6a00, #ee0979);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

footer .container{
  
  background-color: #00adef;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}
#chat-widget {
	position: fixed;
	bottom: 100px;
	right: 50px;
	z-index: 9999;
  }

  /* Nút icon chat tròn có nền trắng, viền xanh và glow */
  .chat-button {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 0 0 5px #00bcd4; /* viền xanh */
	transition: box-shadow 0.3s ease;
	z-index: 10;
  }

  .chat-button::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 50%;
	animation: pulse-glow 2s infinite;
	box-shadow: 0 0 0 0 rgba(0, 114, 188, 0.4);
	z-index: -1;
  }

  .chat-button img {
	width: 30px;
	height: 30px;
	z-index: 2;
  }
.angled-label h3{
    
    background: white;
    color: #0db2f0;
    font-weight: bold;
    padding: 5px;
    font-style: italic;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0% 100%);
    border-radius: 4px;
    margin-bottom: 20px;
}
.wp-block-group {
    border-radius: 10px;
    padding:10px;
}
.wp-block-group p, li{
    color:white;
}
.wp-block-button {
    margin-bottom:20px !important;
}
  @keyframes pulse-glow {
	  0% {
		box-shadow: 0 0 0 0 rgba(0, 114, 188, 0.6);
	  }
	  50% {
		box-shadow: 0 0 0 20px rgba(0, 114, 188, 0.15);
	  }
	  100% {
		box-shadow: 0 0 0 0 rgba(0, 114, 188, 0);
	  }
	}


  /* Popup chứa các tuỳ chọn chat */
  .chat-popup {
	display: none;
	flex-direction: column;
	background-color: white;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	margin-bottom: 10px;
	width: 220px;
  }

  .chat-popup.active {
	display: flex;
	animation: fadeInUp 0.3s ease;
  }

  @keyframes fadeInUp {
	from {
	  opacity: 0;
	  transform: translateY(10px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

  /* Từng tuỳ chọn chat */
  .chat-option {
	display: flex;
	align-items: center;
	padding: 8px 10px;
	border-radius: 6px;
	text-decoration: none;
	color: #0072bc;
	font-size: 14px;
	transition: background 0.2s;
  }

  .chat-option img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
  }

  .chat-option:hover {
	background-color: #f0f8ff;
  }