body {
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #000;
    padding: 15px 40px;
}

.header a {
    color: yellow;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.header a:hover {
    text-decoration: underline;
}

.header i {
    margin-right: 5px;
}

.chat-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid yellow;
}
.message {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.message img.chat-pic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid yellow;
    vertical-align: middle;
}

.username a {
    color: yellow;
    font-weight: bold;
    text-decoration: none;
}

.username a:hover {
    color: orange;
}



body {
  margin: 0;
  padding: 0;
  background-color: #111;
  color: white;
  font-family: Arial, sans-serif;
  margin-top: 70px; /* navbar boşluğu */
  text-align: center;
}


/* Menü */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
}

/* Menü linkleri */
.navbar a {
    color: yellow;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: orange;
    text-shadow: 0 0 6px orange;
}


