.post-page-container {
    max-width: 800px;
    margin: 2rem auto;
}
.post-view-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.post-sidebar {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 1rem;
}
.post-author-name {
    font-size: 1.1rem;
    font-weight: 500;
}
.post-pfp {
    width: 38px !important;
    height: 38px !important;
}

/* Share Modal Styles */
.share-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}
.share-modal.show {
    display: flex;
}
.share-content {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 400px;
    position: relative;
}
.share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.share-icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}
.share-icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: #222;
    border: 1px solid #333;
    text-decoration: none;
    transition: 0.2s;
}
.share-icon-btn:hover {
    transform: scale(1.1);
    color: #fff;
}
.share-field {
    display: flex;
    align-items: center;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 5px 10px;
}
.share-field input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    outline: none;
    font-size: 14px;
}
.share-field .btn {
    background: #ffc107;
    color: #000;
    font-weight: bold;
}