/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Body */
body {
    background-color: #f4f6f8;
    color: #333;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 15px;
}

/* Page Heading */
.container h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

/* Posts Wrapper */
.posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Post Card */
.post-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    position: relative;
}

/* Date */
.post-card .date {
    font-size: 13px;
    color: #777;
    position: absolute;
    top: 15px;
    right: 18px;
}

/* Post Heading */
.post-card h2 {
    margin-bottom: 10px;
    /*color: #1a73e8;*/
    color: #000;
}


/* Post Text */
.post-card p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Links inside post */
.post-card a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
}

.post-card a:hover {
    text-decoration: underline;
}

/* Share Button - Right Aligned */
.share-btn {
    display: block;
    margin-left: auto;   /* pushes button to right */
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.share-btn:hover {
    background-color: #1558b0;
}


/* Feedback Button */
.feedback-btn {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: #25d366;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.feedback-btn:hover {
    background: #1ebc59;
}

/* Shared Post Highlight */
.shared-post {
    border: 2px solid #1a73e8;
    background-color: #eaf1fc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

