/*
 * Auto Style Blockquotes - Stylesheet
 */

/* Main blockquote container styling */
.wp-block-quote {
    border: 2px dashed #4CAF50 !important;
    background-color: #f2fbf2 !important;
    padding: 2rem !important;
    border-radius: 12px;
    text-align: center;
    font-family: sans-serif;
    margin: 2rem auto !important;
    max-width: 600px;
    box-sizing: border-box;
}

/* Quote text (inside the <p> tag) */
.wp-block-quote p {
    color: #333;
    line-height: 1.6;
    font-size: 1.5rem !important;
    font-weight: 500;
    margin-bottom: 0.5rem !important;
}

/* Citation/Author text (inside the <cite> tag) */
.wp-block-quote cite {
    font-style: normal;
    font-size: 1.1rem;
    color: #555;
    display: block;
    margin-bottom: 2rem;
}

/* Share buttons wrapper */
.asb-share-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.asb-share-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
    text-transform: uppercase;
}

.asb-share-buttons {
    display: flex;
    gap: 0.75rem;
}

/* Common button styles */
.asb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    color: white !important; /* Ensure text is white */
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1;
}

.asb-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: white !important;
}

/* Specific button colors and sizes */
.asb-button.asb-copy {
    background-color: #00c896;
}

.asb-icon-button {
    width: 44px;
    height: 44px;
    padding: 0;
}

.asb-button.asb-facebook {
    background-color: #1877F2;
}

.asb-button.asb-whatsapp {
    background-color: #25D366;
}

.asb-button.asb-twitter {
    background-color: #000000;
}

.asb-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

