/* Container */
.quote-box {
  border: 1px dashed #00b894;
  background: #f9fffc;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 18px 0;
}

/* Quote text renders HTML (italic/bold etc.) correctly via RichText.Content */
.quote-text {
  font-size: 18px;
  line-height: 1.7;
  color: #2d3436;
  margin-bottom: 12px;
}

/* ===========================
   Share Buttons
=========================== */

.quote-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

/* ==========================================
   Button Alignment
========================================== */

.quote-actions.qsb-align-left{

    justify-content:flex-start;

}

.quote-actions.qsb-align-center{

    justify-content:center;

}

.quote-actions.qsb-align-right{

    justify-content:flex-end;

}

.share-label{
    font-weight:700;
    color:#555;
    margin-right:4px;
}

/* Base Button */

.share-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:8px 16px;
    border-radius:999px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
    border:2px solid transparent;
    line-height:1;
	
	appearance:none;
	-webkit-appearance:none;
	font-family:inherit;
}

.share-btn i{
    font-size:15px;
}

/* Platform Colors */

.share-btn.copy-btn{
    color:#10b981;
    border-color:#10b981;
}

.share-btn.whatsapp{
    color:#25D366;
    border-color:#25D366;
}

.share-btn.facebook{
    color:#1877F2;
    border-color:#1877F2;
}

.share-btn.twitter{
    color:#000;
    border-color:#000;
}

/* ===========================
   Filled
=========================== */

.qsb-style-filled .share-btn.copy-btn{
    background:#10b981;
    color:#fff;
}

.qsb-style-filled .share-btn.whatsapp{
    background:#25D366;
    color:#fff;
}

.qsb-style-filled .share-btn.facebook{
    background:#1877F2;
    color:#fff;
}

.qsb-style-filled .share-btn.twitter{
    background:#000;
    color:#fff;
}

/* ===========================
   Copy Toast
=========================== */

#qsb-copy-toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%) translateY(20px);
    background: #222;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 999999;
    pointer-events: none;
}

#qsb-copy-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* Copy button success state */
.share-btn.copy-btn.copied {
    background: #198754 !important;
    color: #fff !important;
    transform: scale(1.03);
    transition: all .25s ease;
}

.qsb-style-outline .share-btn{
    background:#fff !important;
    border:2px solid currentColor;
    box-shadow:none;
}

.qsb-style-outline .share-btn.copy-btn{
    color:#10b981 !important;
}

.qsb-style-outline .share-btn.whatsapp{
    color:#25D366 !important;
}

.qsb-style-outline .share-btn.facebook{
    color:#1877F2 !important;
}

.qsb-style-outline .share-btn.twitter{
    color:#000 !important;
}

.qsb-style-outline .share-btn span,
.qsb-style-outline .share-btn i{
    color:inherit;
}

/* ===========================
   Minimal Style
=========================== */

.qsb-style-minimal .share-btn{
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
    padding:4px 2px;
    border-radius:0;
    font-weight:600;
    transition:color .2s ease;
}

.qsb-style-minimal .share-btn.copy-btn{
    color:#10b981;
}

.qsb-style-minimal .share-btn.whatsapp{
    color:#25D366;
}

.qsb-style-minimal .share-btn.facebook{
    color:#1877F2;
}

.qsb-style-minimal .share-btn.twitter{
    color:#000;
}

.qsb-style-minimal .share-btn span,
.qsb-style-minimal .share-btn i{
    color:inherit;
}

.qsb-style-minimal .share-btn:hover{
    background:transparent !important;
    text-decoration:underline;
    transform:none;
    box-shadow:none;
}

/* ===========================
   Display Mode
=========================== */

.qsb-display-icon-text .share-btn span,
.qsb-display-icon-text .share-btn i{
    display:inline-flex;
}

.qsb-display-icon-only .share-btn span{
    display:none;
}

.qsb-display-icon-only .share-btn i{
    display:inline-flex;
}

.qsb-display-text-only .share-btn span{
    display:inline-flex;
}

.qsb-display-text-only .share-btn i{
    display:none;
}

/* ===========================
   Button Size
=========================== */

.qsb-size-small .share-btn{
    font-size:12px;
    padding:6px 12px;
}

.qsb-size-medium .share-btn{
    font-size:14px;
    padding:8px 16px;
}

.qsb-size-large .share-btn{
    font-size:16px;
    padding:10px 20px;
}

.qsb-size-small .share-btn i{
    font-size:13px;
}

.qsb-size-medium .share-btn i{
    font-size:15px;
}

.qsb-size-large .share-btn i{
    font-size:17px;
}

/* ===========================
   Button Shape
=========================== */

.qsb-shape-pill .share-btn{
    border-radius:999px;
}

.qsb-shape-rounded .share-btn{
    border-radius:8px;
}

.qsb-shape-square .share-btn{
    border-radius:0;
}

/* ==========================================
   Button Gap
========================================== */

.quote-actions.qsb-gap-small{

    gap:6px;

}

.quote-actions.qsb-gap-medium{

    gap:10px;

}

.quote-actions.qsb-gap-large{

    gap:16px;

}

/* ==========================================
   Button Animation
========================================== */

.qsb-hover-lift .share-btn:hover{

    transform:translateY(-2px);

}

.qsb-hover-zoom .share-btn:hover{

    transform:scale(1.05);

}

.qsb-hover-float .share-btn:hover{

    box-shadow:0 10px 24px rgba(0,0,0,.15);

}

.qsb-hover-none .share-btn:hover{

    transform:none;
    box-shadow:none;

}