/* Style the post form */
#wall-form {
  margin-bottom: 20px;
  padding: 0 20px;
}

textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.custom-wall-submit-button {
  background-color: #4267B2;
  color: #fff;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

/* Style the post container */
.custom-wall-container {
  border: 1px solid #ddd;
  padding: 10px;
}

/* Style the post header */
.post-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.display-name {
  font-weight: bold;
}

.timestamp {
  margin-left: auto;
  color: #999;
}

/* Style the post content */
.post-content {
  margin-bottom: 10px;
}

/* Style the likes and comments sections */
.likes-section,
.comments-section {
  display: flex;
  align-items: center;
  color: #555;
  margin-bottom: 10px;
}

.like-count {
  margin-right: 10px;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment-author {
  font-weight: bold;
}

.comment-content {
  margin-right: 10px;
}

.comment-actions {
  display: flex;
  align-items: center;
}

.comment-timestamp {
  color: #999;
}

/* Style the actions section (like and comment buttons) */
.actions-section {
  display: flex;
  margin-top: 10px;
}

.custom-wall-like-button,
.custom-wall-submit-button {
  background-color: #4267B2;
  color: #fff;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

.custom-wall-like-button:hover,
.custom-wall-submit-button:hover {
  background-color: #365899;
}

/* Style the comment form */
.comment-form {
  margin-top: 10px;
}

.custom-wall-widget {
    max-width: 400px;
}

.comment-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.custom-wall-widget textarea {
    border: none;
    box-shadow: 0px 0px 8px 0px #ccc;
    /*border-radius: 10px;*/
    padding: 10px;
}

.custom-wall-widget form#wall-form input.custom-wall-submit-button {
    /*border-radius: 10px;*/
    padding: 10px 25px 8px;
    margin: 10px 0;
    float: right;
}

.custom-wall-widget .custom-wall-container {
    margin-top: 50px;
    border: none;
    padding-left: 0;
    padding-right: 0;
}

.custom-wall-widget .custom-wall-container .custom-wall-post {
    margin: 50px 0;
    padding: 20px;
    /*border-radius: 10px;*/
    box-shadow: 0px 0px 8px 0px #ccc;
}

.custom-wall-widget form.comment-form textarea {
    padding: 10px;
}

input.custom-wall-submit-button {
    padding: 10px 25px 8px;
    margin: 0;
    /*border-radius: 10px;*/
}

.custom-wall-widget {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.custom-wall-widget form.like-form {
    display: flex;
    align-items: center;
}

.custom-wall-widget input[type=submit]:hover {
    background: #f1f1f1;
    color:#ed1b23;
}

input.custom-wall-like-button {
    background-color: transparent!important;
    color: #000;
    padding-left: 5px;
    padding-top: 10px;
    font-weight:400!important;
}

input.custom-wall-like-button:hover {
    background-color: transparent;
}

form.like-form span.dashicons.dashicons-thumbs-up {
    cursor: pointer;
}

.comments-section {
    background-color: #eeeeee;
    padding: 20px;
    /*border-radius: 10px;*/
}

.comments-section ul.comment-list li {
    margin: 10px 0;
}

.comments-section ul.comment-list span.comment-content {
    word-break: break-all;
    padding-left: 10px;
}

.comments-section ul.comment-list span.comment-timestamp {
    display: block;
}

.custom-wall-widget form.like-form:hover span.dashicons.dashicons-thumbs-up::before,
.custom-wall-widget form.like-form:hover input.custom-wall-like-button {
    color: #ed1b23;
}

.custom-wall-widget input[type=submit] {
    background-color: #ed1b23;
    font-weight: 500;
}

.comments-section:empty {
    display: none;
}

.custom-wall-widget .custom-wall-container .custom-wall-post:nth-child(1) {
    margin: 30px 0;
}

.custom-wall-widget {
    margin: 0 30px;
    max-height: 600px;
    overflow: scroll;
}

.custom-wall-widget form.comment-form input[type=submit] {
    float: right;
}

.custom-wall-widget .custom-wall-container .custom-wall-post {
    box-shadow: none;
    border-bottom: solid 1px #eeeeee;
    margin: 0px!important;
    padding-bottom: 60px!important;
}

.custom-wall-widget textarea {
    box-shadow: none;
    border: solid 1px #eeeeee;
}

@media(max-width:767px) {
    .custom-wall-widget {
        margin: 0 auto;
    }
}

input[type=submit].custom-wall-delete-button {
    background-color: white;
    color: #ed1b23; /* Adjust color to fit your theme */
    border: none;
    cursor: pointer;
    font-size: 12px; /* Adjust size as needed */
    padding: 0;
    display: inline-block;
    line-height: 1;
	border-radius:99px;
	border: 1px solid #ed1b23;
	padding:3px;
	margin-left:5px;
	
}

input[type=submit].custom-wall-delete-button:hover,
input[type=submit].custom-wall-delete-button:focus {
    color: #ed1b23; /* Change color on hover/focus */
    text-decoration: none;
	background-color:white;
	border: 2px solid #ed1b23;
	font-weight:600;
	padding:2px;
}