.page-container {
    
    width: 70%;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 50px;
    padding: 0rem 1rem;
}
.profile-header {
    text-align: center;
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    background-color: white;
    padding: 10px 10px;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}

.nav-button{
    text-decoration: none;
    color:rgb(36, 123, 160);
}
.nav-button:hover{
    text-decoration: underline;
    color:rgb(31, 107, 139);
}

.page-header {
    margin-top:25px;
    margin-bottom: 30px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.blog-header-img {
    width:100%;
    max-height:200px;
    object-fit: cover;
    display:block;
}

.blog-body{
    margin:20px;
    clear:both;
    border-bottom: 1px solid #ddd;
}

.blog-body-img {
    margin: 10px;
    clear: both;
    max-width: 40%;
    max-height: 300px;
    object-fit: cover;
    float: right;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.8); /* Light border */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1); /* Enhanced shadow for floating effect */
}


.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 5px;
    object-fit: cover;
}
.social-links {
    margin-bottom: 5px;
}
.social-links a {
    margin: 0 10px;
    font-size: 1.2rem;
    color: #6c757d;
}
.card {
    height: 100%;
}
.card-status {
    float:right;
    font-size: 0.9rem;
    border-radius: 15px;
    padding: 2px 8px;
}
.status-work { background-color: #d1ecf1; color: #0c5460; }
.status-ventures { background-color: #d4edda; color: #155724; }
.status-random { background-color: #f8d7da; color: #721c24; }
.status-experiences { background-color:#fff3cd ; color: #856404; }

@media (max-width:576px){
    .page-container {
    width:100%;
    }
}