/* Stylish Quotes Plugin Styles */
.stylish-quote-container {
background-color: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 12px;
padding: 25px 30px;
margin: 30px auto;
max-width: 600px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
font-family: sans-serif;
overflow: hidden;
}

.stylish-quote-text {
font-size: 1em;
line-height: 1.6;
color: #333;
margin: 0 0 25px 0;
font-weight: 500;
}

.stylish-quote-actions {
display: flex;
justify-content: center;
align-items: center;
gap: 12px;
}

.share-label {
font-size: 0.85em;
font-weight: bold;
color: #888;
text-transform: uppercase;
}

/* Social Icons */
.sq-social-icon {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;  /* পুরো গোল */
color: #fff !important; /* আইকন সাদা */
font-size: 1.2em;
text-decoration: none;
cursor: pointer;
transition: transform 0.2s ease, opacity 0.2s ease;
}

/* আইকন ভেতরের <i> সাদা করতে বাধ্য করা */
.sq-social-icon i {
color: #fff !important;
}

/* প্ল্যাটফর্ম অনুযায়ী ব্যাকগ্রাউন্ড */
.sq-facebook { background-color: #1877F2; }
.sq-whatsapp { background-color: #25D366; }
.sq-twitter  { background-color: #1DA1F2; }

.sq-social-icon:hover {
transform: scale(1.12);
opacity: 0.85;
}

/* Copy Button */
.sq-copy-button {
background-color: #0073aa;
color: white;
border: none;
border-radius: 4px;
padding: 8px 15px;
font-weight: bold;
font-size: 0.9em;
cursor: pointer;
text-transform: uppercase;
transition: background-color 0.2s;
}

.sq-copy-button:hover {
background-color: #005a87;
}

.sq-copy-button.copied {
background-color: #4CAF50;
}
