body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Top Header */
.top-header {
    background-color: rgb(183, 212, 244);
    color: white;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header h4 {
    padding-left: 20px;
    color: #343a40;
    margin: 0;
}

.top-header .language-switcher {
    display: flex;
    gap: 10px;
}

/* Header */
header {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

/* Logo và tên */
.logo-name {
    width: 20%;
    /* Chiếm 20% chiều rộng */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-name img {
    width: 80px;
    height: 50px;
    margin-right: 10px;
}

.logo-name h1 {
    margin: 0;
    font-size: 1.5rem;
}

/* Menu */
.menu {
    width: 50%;
    /* Chiếm 50% chiều rộng */
    display: flex;
    justify-content: center;
    align-items: center;
}


nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    padding: 10px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    border-radius: 5px;
}

/* Khoảng trống và thanh tìm kiếm */
.empty-space {
    width: 30%;
    /* Chiếm 30% chiều rộng */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* .empty-space nav ul {
    margin: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
} */

/* Main Content */
/* .container {
            padding: 30px;
        } */

.cv-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.cv-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.cv-avatar {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.cv-content {
    padding: 15px;
}

.cv-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.cv-job-title {
    color: #007bff;
    margin-bottom: 10px;
}

.cv-description {
    font-size: 14px;
    color: #555;
}

/* Hidden content section */
.main-content-section {
    display: none;
}

a {
    text-decoration: none;
    /* Loại bỏ gạch chân */
    color: inherit;
    /* Kế thừa màu sắc từ phần tử cha */
    border: none;
    /* Loại bỏ viền */
    outline: none;
    /* Loại bỏ viền khi focus */
}

a:hover {
    text-decoration: none;
    /* Loại bỏ gạch chân khi hover */
    color: inherit;
    /* Kế thừa màu sắc khi hover */
}

a:focus {
    outline: none;
    /* Loại bỏ viền khi focus */
}

footer {
    display: flex;
    justify-content: space-between;
    /* Tạo không gian đều nhau */
    gap: 10px;
    /* Khoảng cách giữa các cột */
    padding: 20px;

    background-color: rgb(165, 204, 246);
}

footer div {
    flex: 1;
    /* Tất cả các cột có chiều rộng bằng nhau */
    padding: 20px;
}

footer div:hover {
    background-color: rgb(182, 214, 247);
}



/* Footer */
.footer-bot {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}


/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu nav ul {
        flex-direction: column;
        display: none;
        background-color: #343a40;
        width: 100%;
        margin-top: 10px;
        padding-left: 20px;
    }

    .menu nav ul.show {
        display: flex;
    }

    .search-bar,
    .empty-space nav {
        display: none;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-left {
        width: 100%;
    }
}