/* Thiết lập chung */
body {
    background-color: #ffd1dc; /* Màu nền hồng nhạt bên ngoài */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    padding: 50px;
}

/* Khung chính của Card */
.card-container {
    background-color: white;
    width: 600px;
    border-radius: 20px;
    border: 15px solid #ffb7c5; /* Viền hồng đậm bao quanh */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Header & Banner */
.header {
    background-color: #ffdae0;
    position: relative;
    height: 200px;
}

.title-group {
    position: absolute;
    bottom: 20px;
    right: 30px;
    text-align: right;
    color: #ff6b81;
}

.title-group h1 { font-size: 40px; margin: 0; }

/* Thanh Menu */
.navbar {
    background-color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed #ffb7c5;
}

.nav-links a {
    text-decoration: none;
    background: white;
    border: 2px solid #ffb7c5;
    color: #ff6b81;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 5px;
    font-size: 14px;
}

.nav-links a.active {
    background-color: #b2f2ef; /* Màu xanh mint */
    border-color: #b2f2ef;
}

/* Nội dung */
.content {
    display: flex; /* Chia làm 2 cột */
    padding: 20px;
    gap: 20px;
}

.left-col { flex: 2; }
.right-col { flex: 1; }

.about-title {
    color: #ff6b81;
    font-size: 32px;
    margin-bottom: 5px;
}

.info-bar {
    background-color: #4eb5e5;
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 12px;
    border-radius: 5px;
}

.profile-img {
    width: 100%;
    border-radius: 15px;
    border: 5px solid #ffdae0;
}

.strawberry-icons {
    font-size: 30px;
    margin-top: 20px;
}
