﻿/* Style: Modern Light */

.bctt-click-to-tweet {
    display: block;
    background-color: #f9f9f9; /* Light grey background */
    border-left: 5px solid #007cba; /* WP Blue accent */
    padding: 20px 25px 20px 25px;
    margin: 1.5em 0;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border-radius: 0 3px 3px 0;
}

.bctt-click-to-tweet:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

/* Style for text within editor preview */
.bctt-click-to-tweet .mce-content-body {
    color: #333 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
    font-size: 1.2em !important; /* Slightly smaller */
    line-height: 1.6 !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    text-transform: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Style for text on frontend */
.bctt-ctt-text a {
    color: #333 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
    font-size: 1.2em !important; /* Slightly smaller */
    line-height: 1.6 !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    text-transform: none !important;
    word-wrap: break-word;
    border-bottom: none !important;
    box-shadow: none !important;
    display: block; /* Ensure it takes block space */
    margin-bottom: 15px; /* Add space below text, above button */
}

.bctt-ctt-text a:hover {
    color: #005a87 !important; /* Darker blue on hover */
    text-decoration: none;
}

a.bctt-ctt-btn {
    display: inline-block; /* Make it behave like a button */
    float: right;
    background-color: #007cba; /* WP Blue background */
    color: #ffffff !important; /* White text */
    padding: 8px 15px;
    border-radius: 3px;
    text-decoration: none !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
    font-size: 0.9em !important;
    font-weight: 600 !important;
    text-transform: none !important; /* No uppercase */
    border: none !important; /* Remove potential borders */
    box-shadow: none !important;
    transition: background-color 0.2s ease;
}

a.bctt-ctt-btn:hover {
    background-color: #005a87; /* Darker blue on hover */
    color: #ffffff !important;
    text-decoration: none;
} 