/* Utility class for mobile-only display */
.d-mobile {
  display: block;
}
@media (min-width: 769px) {
  .d-mobile {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
  }
}
/* Watermark Styles for Mobile Only */
.botpey-watermark {
    display: block;
    text-align: center;
    padding: 6px 0;
    margin-bottom: 8px;
    background-color: #ffffff;
    color: #6c757d;
    font-size: 11px;
    text-decoration: none;
    width: 100%;
    position: relative;
    z-index: 1;
    border-top: 1px solid #e2e8f0;
}
.botpey-watermark .brand-name {
    font-weight: bold;
    color: #4a5568;
}
@media (min-width: 769px) {
    .botpey-watermark {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
    }
}
