* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding: 60px 0 100px 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header {
    margin-bottom: 20px;
}

.header-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.5em;
    margin: 0;
    color: #2c3e50;
}

h1 a {
    color: inherit;
    text-decoration: none;
}

.header-title a {
    color: #2c3e50;
    text-decoration: none;
}


.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    /* border: 2px solid #e0e0e0; */
}

.avatar:hover {
    /* scale: 1.1;    */
    filter: brightness(1.04);
}

.avatar-link {
    text-decoration: none;
    display: inline-block;
}


nav {
    margin-top: 20px;
}

nav a {
    color: #2c3e50;
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
}

nav a:hover {
    /* text-decoration: underline; */
    color: #00aeee;
}

/* .pinned-entries {
    margin-top: 30px;
} */

.pinned-entries:empty {
    display: none;
}

.pinned-entries .entry-title a::before {
    content: "📌 ";
}

.entries {
    margin-top: 0;
}

.entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.entry-title {
    flex: 1;
    font-size: 1em;
    color: #2c3e50;
}

.entry-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #00aeee;
}

.entry-meta {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-left: 20px;
}

.no-entries {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
    font-style: italic;
}

.content {
    margin-top: 30px;
}

.content h2 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 15px;
    color: #555;
}

.content a {
    color: #00aeee;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pagination-link {
    padding: 8px 12px;
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s ease;
    font-size: 0.9em;
}

.pagination-link:hover:not(.active) {
    color: #00aeee;
}

.pagination-link.active {
    color: #00aeee;
    cursor: default;
    font-weight: 500;
}
