/* 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: 1.5em;
    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;
}

.sq-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: transform 0.2s ease-in-out, opacity 0.2s;
}

.sq-social-icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.sq-facebook { background-color: #1877F2; }
.sq-whatsapp { background-color: #25D366; }
.sq-twitter { background-color: #1DA1F2; }

.sq-copy-button {
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    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;
}
