/* Container for the Word Count Plugin */
.wc-word-count-container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

/* Title style */
.wc-word-count-container h3 {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Textarea for input */
textarea {
    width: 100%;
    min-height: 200px;
    padding: 15px;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 8px;
    border: 1px solid #ddd;
    resize: vertical;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

/* Focus effect for textarea */
textarea:focus {
    border-color: #0073e6;
    outline: none;
}

/* Button style */
button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #0073e6;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #005bb5;
}

/* Results style */
#wc-results p {
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
}

#wc-results span {
    font-weight: bold;
    color: #0073e6;
}

/* Styling for the copy shortcode button */
#copy-shortcode {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#copy-shortcode:hover {
    background-color: #218838;
}

/* Shortcode input field */
#wc-shortcode {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    color: #333;
}

/* Additional styling for TinyMCE */
textarea.mceEditor {
    min-height: 250px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wc-word-count-container {
        padding: 20px;
    }

    button {
        width: 100%;
        padding: 10px;
    }
}

/* New styles for report grid */
#wc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

#wc-results p {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0;
}

#wc-results p strong {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

#wc-results span {
    font-size: 24px;
    font-weight: bold;
    color: #0073e6;
}
