body {
    background-color: #0d0d0d;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: #0d0d0d;
    color: white;
}

.left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.username {
    font-size: 16px;
    font-weight: 500;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
}
.icon {
    font-size: 18px;
    cursor: pointer;
}
.search {
    margin: 8px 15px;
}
.search input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    background-color: #1c1c1c;
    color: #ffffff;
    font-size: 14px;
}
.search input::placeholder {
    color: #aaa;
}
.note {
    display: flex;
    padding: 20px;
    color: white;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: baseline;
    position: relative;
}
.note::after{
    margin-top: -20px;
   content: "heloo";
    position: absolute;
    background:grey;
    padding: 10px;
    border-radius:30px;
}


.aks {
    border-radius: 50px;
    height: 90px;
    width: 90px;
}
.title {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #aaa;
}
.requests {
    color: #3897f0;
    cursor: pointer;
}
.chat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.chat img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.chat-info {
    flex: 1;
    margin-left: 10px;
}
.chat-info .name {
    color: whitesmoke;
    font-size: 14px;
    margin: 0;
}
.chat-info .message {
    font-size: 12px;
    margin: 0;
    color: #aaa;
}
.chat-icon {
    color: #aaa;
}
.camera{
    color: white;
}
