#tinysummary-floating-box {
    position: fixed;
    right: 5px;
    bottom: 10px;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    z-index: 9999999;
}

.tinysummary-header {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

#tinysummary-content {
    padding: 12px;
    max-height: 180px;
    overflow-y: auto;
}

.tinysummary-loader {
    width: 36px;
    height: 36px;
    margin: 40px auto;
    border: 4px solid #e5e7eb;
    border-top-color: #2271b1;
    border-radius: 50%;
    animation: tinysummary-spin 1s linear infinite;
}

@keyframes tinysummary-spin {
    to { transform: rotate(360deg); }
}

.tinysummary-actions {
    display: flex;
    gap: 6px;
}

.tinysummary-copy-btn {
background: #f0f6fc;
    border: 1px solid #c3c4c7;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tinysummary-copy-btn:hover {
    background: #e5f0fb;
    border-color: #2271b1;
}

.tinysummary-copy-btn.copied {
    background: #d1fae5;
    border-color: #22c55e;
    color: #065f46;
}

.tinysummary-copy-btn svg.tinysummary-copy-icon {
    height: 20px;
    width: 20px;
}

.tinysummary-summary{
    font-size: 16px;
}

#tinysummary-close {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#tinysummary-close span.dashicons.dashicons-no{
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}