/* =========================
   OurSpaceWorld THEME
   Forest Green + Deep Red
========================= */

body {

    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #F5F5F5;
    color: #222222;

}


/* Header */

header {

    background: #2E7D32;
    color: white;

    padding: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

}


.logo {

    font-size: 28px;
}


nav a {

    color: white;
    text-decoration: none;

    margin-left: 20px;

}


nav a:hover {

    text-decoration: underline;

}


/* Page Containers */

.register-container,
.dashboard {

    width: 80%;
    margin: 40px auto;

}


/* Cards */

.register-card,
.welcome,
.create-post,
.feed {

    background: white;

    padding: 25px;

    border-radius: 15px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

}


/* Inputs */

input,
textarea {

    width: 90%;

    padding: 12px;

    margin: 8px 0;

    border-radius: 8px;

    border: 1px solid #cccccc;

    font-size: 16px;

}


/* Buttons */

button {

    background: #C62828;

    color: white;

    border: none;

    padding: 12px 22px;

    border-radius: 8px;

    cursor: pointer;

    font-size: 16px;

}


button:hover {

    background: #2E7D32;

}


/* Posts */

.post {

    padding: 20px 0;

    border-bottom: 1px solid #ddd;

}


.post h3 {

    color: #2E7D32;

}


small {

    color: #777;

}


/* Profile */

.profile-card {

    background:white;

    width:60%;

    margin:40px auto;

    padding:30px;

    border-radius:15px;

    text-align:center;

}
.profile-picture img {

    width:150px;

    height:150px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #2E7D32;

}
.post-header {

    display:flex;

    align-items:center;

    gap:15px;

}


.post-image {

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #2E7D32;

}