*{
    box-sizing: border-box;
}

body{
    margin: 0px;
    font-family: arial;
}

#header{
    background-color: #F7A8A8; /* màu hồng */
	height: 55px;              /* tăng chiều cao */
    display: flex;             /* thêm dòng này */
    align-items: center;       /* căn giữa theo chiều dọc */
}

/* KHUNG GIỮA */
.header-container{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img{
    height: 55px;
}

/* SEARCH */
.search{
    flex: 1;
    margin: 0 30px;
}

.search input{
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: none;
    padding-left: 10px;
}

/* RIGHT */
.header-right{
    display: flex;
    gap: 20px;
    color: white;
    font-size: 14px;
}
#top{
    height: 20px;
    width: 100%;
    background-color: #FFB6C1;
}

#menu{
    background: #eee;
    margin-top: 0px;
}
.container{
    width: 1200px;
    margin: 0 auto;
}
/* ===== SIDEBAR + CONTENT ===== */
.main{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

/* MENU TRÁI */
.sidebar{
    width: 250px;
    background: #f5f5f5;
}
.menu-title {
    background: black;
    color: white;
    padding: 12px;
    font-weight: bold;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.menu-list li:hover {
    background: #eee;
}

.menu-list .active {
    color: red;
    font-weight: bold;
}

/* BÊN PHẢI */
/* MENU */
/* NỀN NGOÀI */
#menu {
    background: #eee;
    margin: 0;
    padding: 0;
}
.container {
    width: 1200px;
    margin: 0 auto;
}

/* KHUNG TRẮNG GIỮA */
#menu .container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;

    background: #fff;              /* 👈 QUAN TRỌNG */
    height: 50px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* 👈 tạo nổi */
}
/* MENU TRÁI (ô đen) */
.menu-left {
    width: 250px;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    padding-left: 20px;
    height: 100%;   /* 👈 ăn full thanh trắng */
}

/* MENU PHẢI */
.menu-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 20px;
}

/* LINK MENU */
.menu-right a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    white-space: nowrap;
}

/* HOVER */
.menu-right a:hover{
    color: red;
}

.content img{
    width: 100%;     /* full khung bên phải */
    max-height: 440px;  /* 👈 giảm chiều cao */
    object-fit: cover;  /* không bị méo ảnh */
	margin-top: 20px;
}

.box {
    flex: 1;
    padding: 25px;
    border-radius: 12px;
    color: white;
    height: 160px;

    display: flex;
    flex-direction: column;
    justify-content: center; /* QUAN TRỌNG */
}
.feature-box {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}
/* Màu từng box */
.box1 {
    background: #e7647a;
}

.box2 {
    background: #e69352;
}

.box3 {
    background: #cfd8dc;
    color: #333;
}

/* Button */
.box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.box button {
    padding: 8px 14px;
    border: none;
    border-radius: 20px;
    background: white;
    cursor: pointer;
}