body {
    font-family: Arial, sans-serif;
    background-color: #18191A;
    color: #E4E6EB;
    margin: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
}

.logoimg {
    height: 40px;
    margin-right: 10px;
}

.header-left input {
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    background-color: #3A3B3C;
    color: #E4E6EB;
}

.header-right a {
    color: #062574;
    margin-left: 15px;
    font-size: 20px;
}

.profile {
    text-align: center;
    margin-top: 80px;
}

.cover-photo {
    position: relative;
}

.cover-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.cover-photo button {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: #3A3B3C;
    color: #E4E6EB;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}

.profile-photo {
    position: relative;
    margin-top: -50px;
}

.profile-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #18191A;
}

.profile-info {
    margin-top: 10px;
}

.content {
    margin-top: 20px;
    padding: 0 20px;
}

.sidebar {
    display: flex;
    justify-content: center;
    background-color: #242526;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.sidebar ul {
    display: flex;
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin: 0 10px;
}

.sidebar a {
    color: #E4E6EB;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 5px;
}

.sidebar a:hover {
    background-color: #3A3B3C;
}

.main-content {
    padding: 0 20px;
}

.status-update {
    background-color: #242526;
    padding: 20px;
    border-radius: 10px;
}

.status-update textarea {
    width: 100%;
    padding: 10px;
    background-color: #3A3B3C;
    border: none;
    border-radius: 5px;
    color: #E4E6EB;
    margin-bottom: 10px;
}

.status-buttons {
    display: flex;
    justify-content: space-between;
}

.status-buttons button {
    background-color: #3A3B3C;
    color: #E4E6EB;
    border: none;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.status-buttons button i {
    margin-right: 5px;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right span {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.language-icon {
    width: 24px;
    height: 24px;
    margin: 0 5px;
    cursor: pointer;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin: 0 5px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

.profile-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}

.nav-link {
    color: #E4E6EB;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #3A3B3C;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: #1a4bc5;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.dropdown-toggle:hover {
    background-color: #3A3B3C;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #242526;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    color: #ebe9e4;
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background-color: #3A3B3C;
}

.dropdown-divider {
    height: 1px;
    margin: 0.5rem 0;
    overflow: hidden;
    background-color: #3A3B3C;
}