.comments-container {
    background-color: white;

    border-radius: 5px;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.profile {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

.profile-info {
    flex-grow: 1;
}

.profile .name {
    font-weight: bold;
	margin-bottom:0.15rem
	
}

.date {
    font-size: 0.85em;
    color: #666;
}

.comment, .reply {
    border-bottom: 1px solid #e1e1e1;
    padding: 25px 0;
}

.comment:last-child, .reply:last-child {
    border-bottom: none;
}

.reply {
    background-color: #e9e9ff;
    margin-left: 60px;
    padding: 20px;
    border-radius: 10px;
}

.content {
    margin-top: 20px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color:#6A6A6A;
}

@media (max-width:1200px) {
    body {
        padding: 10px;
    }

    .comment, .reply {
        padding: 10px 0;
    }

    .profile {
        flex-direction: column;
        align-items: center;
    }

    .profile-info {
        text-align: center;
    }

    .reply {
        margin-left: 20px;
    }
}





.comment-form-container {
    background-color: white;

  
    border-radius: 5px;
    max-width:800px;
    margin: auto;
    padding: 20px;
}

h2 {
    color: #333;
}

textarea, input[type="text"], input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Includes padding and border in width */
}

button {
    background-color: #ffcc00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width:20%;
    margin-top:0px;
	
}

button:hover {
    background-color: #e6b800;
}

@media (max-width:800px) {
    .comment-form-container {
        margin: 10px;
        padding: 10px;
    }
    
    button {
        padding: 15px 20px;
    }
}








.bio-container {
	display: flex;
	align-items: center;
	border: 1px solid #e9e9f2;
	background-color:#e9e9ff;

	padding: 20px;
	border-radius: 5px;
	max-width: 800px;
	margin: auto;
	
}

.profile-pic {
   height: auto;
    height: auto;
    border-radius: 50%;
    margin-right: 20px;
  
}

.bio-content {
    flex-grow: 1;
}

.author {
     color: #333;
}

.social-icon {
    text-decoration: none;
    color: #1DA1F2; /* Twitter color, adjust accordingly */
    margin-right: 10px;
}



@media (max-width:800px) {
    .bio-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-pic {
        margin-bottom: 10px;
    }

    .social-icon {
        margin: 0 5px;
    }
}



.info-bar {
    background-color: #fff;
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width:auto;
    margin: auto;
	margin-bottom:30px;
	font-size:15px;
}

.author-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Makes the image circular */
    margin-right: 5px;
}

.comments-button {
    background-color: #007BFF;
    color: white;
    border: none;
	width:20%;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

.comments-button:hover {
    background-color: #0056b3;
}

@media (max-width:800px) {
    .info-bar {
        flex-direction: column;
        text-align: center;
    }

    .comments-button {
        margin-top: 10px;
    }
}
