/* AI Comment Summarizer Style */
.acs-summary-wrapper {
    margin: 2em 0;
    padding: 20px 25px;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #0073aa; /* WordPress blue */
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.acs-summary-wrapper .acs-summary-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
    color: #2c3e50;
}

.acs-summary-wrapper .acs-summary-content p {
    margin: 0 0 1em;
    line-height: 1.7;
    color: #34495e;
}

.acs-summary-wrapper .acs-summary-content p:last-child {
    margin-bottom: 0;
}
/* --- New Styles for Public Button --- */
.acs-public-wrapper {
    margin: 2em 0;
    text-align: center;
}

#acs-public-generate-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #0073aa, #00c6ff);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 115, 170, 0.3);
}

#acs-public-generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 115, 170, 0.4);
}

#acs-public-generate-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#acs-public-summary-container .acs-loading,
#acs-public-summary-container .acs-error {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    background-color: #f0f0f0;
}

#acs-public-summary-container .acs-error {
    color: #d9534f;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
}