.whatsapp-feed {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .whatsapp-feed .message-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .whatsapp-feed .message-item_desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    font-weight: 400;
    letter-spacing: 0.2px;
  }
  .whatsapp-feed .message-item_button {
    display: inline-block;
    align-self: flex-start;
    background: #DD3333;
    color: #fff;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 6px;
    transition: background 0.2s ease;
    text-align: center;
  }
  .whatsapp-feed .message-item_button:hover {
    background: #FF0000;
    color: #fff;
  }
  .whatsapp-feed .message-item_attachement {
    max-width: 120px;
    width: 100%;
    border-radius: 8px;
    margin-top: 0;
  }
  .whatsapp-feed .message-item:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 25px;
}
.whatsapp-feed .message-item_desc br + br{
    display: none;
  }
  .load_more_whatsapp_button {
    margin-top: 50px;
    margin-inline: auto !important;
    display: block;
    width: fit-content;
    padding: 10px 24px !important;
    background: #DD3333;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 6px;
    transition: all 0.2s ease;
    border: 1px solid #DD3333;
}
.load_more_whatsapp_button:hover{
    background: #FF0000;
    color: #fff;
}
#feed-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000054;
    z-index: 9999;
    margin: 0 !important;
}
.feed_spinner{
    width:35px;
    height:35px;
    border:4px solid #ddd;
    border-top-color:#333;
    border-radius:50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}