body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
}

p {
    margin: 5px 0;
    font-style: regular;
}

#feed-selector {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}

.event {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.event-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.name {
    font-weight: bold;
    margin-right: 10px;
}

.timestamp {
    color: gray;
    font-size: 0.9em;
    margin-left: auto;
}

.content img,
.content video {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
}

.content p {
    margin: 0;
    word-wrap: break-word;
}

.quoted {
    border-left: 4px solid #ccc;
    padding-left: 10px;
    margin: 10px 0;
    background-color: #f0f0f0;
    border-radius: 4px;
}