body {
    margin: 0;
    padding: 0;
    font-family: helvetica, sans-serif;
    background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    background-attachment: fixed;
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
}

a {
    color: #0088cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #005f99;
}

h1, h2 {
    font-weight: 500;
    color: #222;
}

h1 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-top: 20px;
    font-size: 28px;
}

h2 {
    margin-top: 30px;
    font-size: 22px;
}

#container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
}

/* Layout */
#content {
    flex: 1;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.04);
}

#sidebar {
    width: 25%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Helvetica', sans-serif;
}

#profile-avatar {
    width: 80%;
    max-width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #00abff;
}


#profile-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sidebar-menu {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-menu a {
    display: block;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #00abff, #0077cc);
    font-weight: 500;
    transition: background 0.3s;
}

.sidebar-menu a:hover {
    background: linear-gradient(135deg, #0077cc, #005fa3);
}

p.date {
    color: #999;
    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
}

/* Pagination */
.pagination {
    margin: 40px 0;
    font-weight: 500;
    display: flex;
    gap: 10px;
}

.pagination a {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    transition: background-color 0.3s;
}

.pagination a:hover {
    background-color: #e9f5ff;
}

/* Forms */
input[type=text],
input[type=email],
textarea {
    width: 30%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
    font-size: 14px;
    background-color: #fefefe;
}

input[type=submit] {
    font-weight: bold;
    background: #0088cc;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

input[type=submit]:hover {
    background: #006fa1;
}

.errorlist {
    color: #d63333;
    margin: 5px 0;
    font-size: 13px;
}

/* Comments */
.comment {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f4f4f4;
    border-radius: 10px;
}

.comment:nth-child(even) {
    background: #eaeaea;
}

.comment .info {
    font-weight: 500;
    font-size: 13px;
    color: #444;
    margin-bottom: 5px;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}