/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f6f7f8;
}

/* Header styling */
header {
    background-color: #0079d3;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-header {
    display: flex;
    align-items: center;
}

.logo-header h1 {
    color: #fff;
    margin-right: 10px;
}

.logo {
    width: 70px; 
    height: 50px; 
    overflow: hidden; 
}

img {
    max-width: 30%; 
    height: auto;
    border-radius: 8px; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}





/* Navigation styling */
nav {
    background-color: #fff;
    padding: 10px 20px;
    text-align: center;
}

nav ul {
    list-style-type: none;
}

nav li {
    display: inline-block;
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: #333;
}

/* Main content styling */
main {
    background-color: #f6f7f8;
    padding: 20px;
    margin: 1.5rem; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Individual post styling */
.post {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.1);
}

.post-title {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.post-content {
    color: #666;
    line-height: 1.4;
}

.post-info {
    color: #999;
    font-size: 14px;
}

.post-multimedia {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

.vote-container {
    margin-top: 10px;
}

.upvote, .downvote {
    cursor: pointer;
    margin-right: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background-color: #0079d3;
    color: #0079d3;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.upvote:hover, .downvote:hover {
    background-color: #005aa6;
}

.upvotes.negative {
    color: red;
}

/* SpoonFeed styling (For when "friends/subscriptions" are dispalyed in another content block on the homepage) */
#feed {
    background-color: #0079d3;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.1);
}

/* Footer styling */
footer {
    position: fixed; 
    bottom: 0; 
    width: 100%; 
    text-align: center;
    padding: 10px 0;
    background-color: #0079d3;
    color: #fff;
}

/* User actions styling */
.user-actions {
    display: flex;
    align-items: center;
}

.user-actions a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

.profile-picture-container {
    width: 50px;
    height: 50px; 
    border: 2px solid #fff;
    border-radius: 50%; 
    overflow: hidden;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center; /* Center the image vertically */
}

.profile-picture {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    border-radius: 50%; 
    flex-shrink: 0;
    max-width: none; 
}





/* Account information styling */
.account-info {
    margin-top: 20px;
}

.account-info form {
    margin-top: 10px; 
}

.account-info label {
    display: block; 
    margin-bottom: 5px; 
}

.account-info button {
    margin-top: 10px; 
}
