/* BOZ.AI - Quote Assistant Plugin Styles */

/* Assistant Button */
#quote-assistant-button {
    position: fixed;
    z-index: 9999 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.quote-branding {
    font-size: 10px;
    font-weight: 600;
    color: #667eea;
    text-align: center;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

#quote-assistant-button.position-bottom-right {
    bottom: 30px;
    right: 30px;
}

#quote-assistant-button.position-bottom-left {
    bottom: 30px;
    left: 30px;
}

#quote-assistant-button.position-top-right {
    top: 30px;
    right: 30px;
}

#quote-assistant-button.position-top-left {
    top: 30px;
    left: 30px;
}

#generate-quote-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    color: white;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

#generate-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#generate-quote-btn:active {
    transform: translateY(0);
}

#generate-quote-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.quote-icon {
    font-size: 16px;
}

#quote-loading {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
}

/* Full-screen loading overlay */
#quote-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999999 !important;
    display: none;
    justify-content: center;
    align-items: center;
}

#quote-loading-overlay .loading-content {
    background: #2c3e50;
    color: white;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 400px;
}

#quote-loading-overlay .loading-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

#quote-loading-overlay .loading-message {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Dual circle loading spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    position: relative;
}

/* Inner circle - clockwise rotation with 1/4 gap at bottom */
.loading-spinner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid transparent;
    border-top: 3px solid #3498db;
    border-right: 3px solid #3498db;
    border-left: 3px solid #3498db;
    border-radius: 50%;
    animation: spinClockwise 1s linear infinite;
}

/* Outer circle - counterclockwise rotation with 1/4 gap at top */
.loading-spinner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 3px solid transparent;
    border-bottom: 3px solid #667eea;
    border-right: 3px solid #667eea;
    border-left: 3px solid #667eea;
    border-radius: 50%;
    animation: spinCounterClockwise 1.5s linear infinite;
}

@keyframes spinClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinCounterClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Quote Container */
#quote-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2c3e50;
    color: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 80vh;
    width: 900px;
    z-index: 9999995 !important;
    overflow: hidden;
}

#quote-header {
    background: #34495e;
    color: white;
    padding: 20px;
    border-bottom: 1px solid #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
    user-select: none;
}

#quote-header h3 {
    margin: 0;
    font-size: 18px;
}

#detected-language {
    font-size: 12px;
    font-weight: normal;
    color: #666;
    display: block;
}

#quote-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

#quote-controls button {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.2s ease;
}

#quote-controls button:hover {
    background: #2980b9;
}


#quote-controls button.active {
    background: #e74c3c;
}

#delete-all-quote-btn {
    background: #e74c3c !important;
}

#delete-all-quote-btn:hover {
    background: #c0392b !important;
}

#analyze-content-btn {
    background: #9b59b6 !important;
}

#analyze-content-btn:hover {
    background: #8e44ad !important;
}

#customize-guide-btn {
    background: #27ae60 !important;
}

#customize-guide-btn:hover {
    background: #229954 !important;
}

#quote-content {
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
}

#quote-actions {
    border-top: 1px solid #eee;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
}

#quote-info {
    flex: 1;
}

#quote-action-buttons {
    display: flex;
    gap: 10px;
}

#quote-container button {
    border: none !important;
}

#quote-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#save-quote-btn {
    background: #28a745;
    color: white;
}

#save-quote-btn:hover {
    background: #218838;
}

#save-quote-btn.disabled,
#save-quote-btn:disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

#save-quote-btn.disabled:hover,
#save-quote-btn:disabled:hover {
    background: #6c757d !important;
}

#cancel-quote-btn {
    background: #6c757d;
    color: white;
}

#cancel-quote-btn:hover {
    background: #5a6268;
}

/* Quote List */
.quote-accordion {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.quote-item {
    position: relative;
    border-bottom: 1px solid #e1e5e9;
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 0 10px 0 !important;
    margin: 0 !important;
    background: transparent;
}

.quote-item:last-child {
    border-bottom: none;
}

.quote-question {
    background: #34495e;
    color: white;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    outline: none;
}

.quote-question:hover,
.quote-question:focus {
    background: #3d566e;
}

.quote-question.active {
    background: #1e3a5f;
    border-left: 4px solid #3498db;
}

.quote-question-text {
    font-weight: 600;
    color: #000000;
    flex: 1;
    font-size: 16px;
    line-height: 1.4;
}

.quote-item .quote-text {
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    padding-right: 10px;
}

.quote-drag-handle .quote-edit-btn {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 10px;
    transition: all 0.2s ease;
    border-radius: 4px;
    font-weight: bold;
}

.quote-drag-handle .quote-edit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.quote-drag-handle .quote-edit-btn:active {
    transform: scale(0.95);
}

.quote-toggle {
    font-size: 20px;
    font-weight: bold;
    color: #3498db;
    margin-left: 15px;
    transition: transform 0.2s ease;
}

.quote-question.active .quote-toggle {
    transform: rotate(45deg);
}

.quote-answer {
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-left: 4px solid #34495e;
}

.quote-answer p {
    margin: 0;
    color: #000000;
    line-height: 1.6;
    font-size: 15px;
}


.quote-drag-handle {
    cursor: move;
    color: #ffffff !important;
    padding: 4px 8px;
    font-size: 16px;
    user-select: none;
}

.quote-drag-handle:hover {
    color: #ffffff !important;
}

/* Sortable states */

.ui-sortable-helper {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
    transform: rotate(2deg);
}

.ui-sortable-placeholder {
    background: #34495e !important;
    border: 2px dashed #3498db !important;
    min-height: 60px;
}

/* Quote Item Modal */
#quote-item-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999998 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#quote-modal-content {
    background: #2c3e50;
    color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#quote-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #34495e;
}

#quote-modal-header h4 {
    margin: 0;
    font-size: 18px;
}

#quote-modal-close {
    font-size: 24px;
    cursor: pointer;
    color: #95a5a6;
    line-height: 1;
}

#quote-modal-close:hover {
    color: #ecf0f1;
}

#quote-modal-body {
    padding: 20px;
}

.quote-form-group {
    margin-bottom: 20px;
}

.quote-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ecf0f1;
}

.quote-form-group input,
.quote-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #34495e;
    border-radius: 4px;
    background: #34495e;
    color: #ecf0f1;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.quote-form-group input:focus,
.quote-form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.quote-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

#quote-modal-actions {
    padding: 20px;
    border-top: 1px solid #34495e;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

#quote-modal-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

#quote-modal-save-btn {
    background: #27ae60;
    color: white;
}

#quote-modal-save-btn:hover {
    background: #229954;
}

#quote-modal-cancel-btn {
    background: #95a5a6;
    color: white;
}

#quote-modal-cancel-btn:hover {
    background: #7f8c8d;
}

/* Notices */
.quote-notice {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: 600;
    z-index: 10000000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-notice.quote-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.quote-notice.quote-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    #quote-assistant-button {
        bottom: 20px;
        right: 20px;
    }
    
    #generate-quote-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    #quote-container {
        width: 95vw;
        max-height: 85vh;
    }
    
    .quote-question {
        padding: 15px;
    }
    
    .quote-question-text {
        font-size: 15px;
    }
    
    .quote-answer {
        padding: 15px;
    }
    
    .quote-answer p {
        font-size: 14px;
    }
}

/* Drag & Drop Quote Styles */
.quote-item {
    position: relative;
    cursor: grab;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    list-style: none !important;
    list-style-type: none !important;
}

.quote-list {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.quote-item.dragging {
    opacity: 0.5;
    transform: rotate(2deg);
    cursor: grabbing;
}

.quote-drag-handle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(45deg, #2196f3, #21cbf3);
    color: white;
    border-radius: 6px 6px 0 0;
    font-size: 12px;
    font-weight: 500;
    user-select: none;
    position: relative;
}

.drag-icon {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.drag-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-text {
    padding: 12px;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    line-height: 1.4;
    color: #333 !important;
    font-size: 14px;
}

.quote-item:hover .quote-drag-handle {
    background: linear-gradient(45deg, #1976d2, #1cb4d9);
}

/* Drop Zone Styles */
.quote-drop-zone {
    min-height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
    display: block;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

/* Make dropzones visible when dragging is active */
body.dragging-quote .quote-drop-zone {
    opacity: 1;
    pointer-events: auto;
    background: rgba(33, 150, 243, 0.1);
    border: 2px dashed rgba(33, 150, 243, 0.3);
    border-radius: 4px;
    min-height: 40px;
    margin: 5px 0;
}

.quote-drop-zone.drag-over {
    background: rgba(33, 150, 243, 0.35) !important;
    border: 3px solid #2196f3 !important;
    min-height: 50px !important;
    transform: scale(1.02) !important;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.5) !important;
}

.quote-drop-zone.drag-over::after {
    content: "+";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2196f3;
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7);
    animation: ripple 1.5s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes dropzonePulse {
    0%, 100% {
        background: rgba(33, 150, 243, 0.5);
        box-shadow: 0 6px 20px rgba(33, 150, 243, 0.7);
    }
    50% {
        background: rgba(33, 150, 243, 0.7);
        box-shadow: 0 8px 25px rgba(33, 150, 243, 0.9);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(33, 150, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
    }
}

/* Ghost Preview */
.quote-ghost {
    position: fixed;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #2196f3;
    border-left: 4px solid #2196f3;
    padding: 12px 16px;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    max-width: 300px;
    z-index: 10000;
    font-size: 14px;
    line-height: 1.4;
    color: #333 !important;
    backdrop-filter: blur(2px);
    font-weight: 500;
}

/* Drag State */
body.dragging-quote {
    user-select: none;
    cursor: grabbing !important;
}

body.dragging-quote * {
    cursor: grabbing !important;
}

/* Page Content Drop Area */
.main-content {
    position: relative;
}

.main-content.drop-active {
    outline: 2px solid rgba(33, 150, 243, 0.3);
    outline-offset: 5px;
}

#insertion-overlay {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(33, 150, 243, 0.95);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 10000001 !important;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#insertion-overlay button {
    background: #f44336;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 500;
}

#insertion-overlay button:hover {
    background: #d32f2f;
}

/* Inserted Quote Styles */
.inserted-quote {
    font-style: italic !important;
    border-radius: 0 8px 8px 0 !important;
    position: relative !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    display: block !important;
    clear: both !important;
    width: auto !important;
    max-width: none !important;
}

/* Delete button for inserted quotes */
.quote-delete-inserted-btn {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    background: #f44336 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    line-height: 1 !important;
    z-index: 1000 !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}

.quote-delete-inserted-btn:hover {
    background: #d32f2f !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}

.quote-delete-inserted-btn:active {
    transform: scale(0.95) !important;
}

.inserted-quote::before {
    content: '"' !important;
    position: absolute !important;
    top: 10px !important;
    left: 15px !important;
    font-size: 28px !important;
    color: #2196f3 !important;
    font-weight: bold !important;
    font-style: normal !important;
}

.inserted-quote::after {
    content: '"' !important;
    position: absolute !important;
    bottom: 10px !important;
    right: 15px !important;
    font-size: 28px !important;
    color: #2196f3 !important;
    font-weight: bold !important;
    font-style: normal !important;
}

/* Special styles for drag-inserted quotes */
.inserted-quote.drag-inserted {
    animation: slideInFromTop 0.5s ease-out !important;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    #generate-quote-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .quote-icon {
        font-size: 14px;
    }
    
    #quote-actions {
        flex-direction: column;
    }
    
    #quote-actions button {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* Animation for Quote container */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

#quote-container {
    animation: slideInUp 0.3s ease-out;
}

/* Accessibility improvements */
.quote-question:focus {
    outline: none;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    #quote-container {
        background: #2c3e50;
        color: white;
    }
    
    .quote-question {
        background: #34495e;
        color: white;
    }
    
    .quote-question:hover,
    .quote-question:focus {
        background: #3d566e;
    }
    
    .quote-question.active {
        background: #1e3a5f;
    }
    
    .quote-answer {
        background: #2c3e50;
        border-left-color: #34495e;
    }
    
    .quote-answer p {
        color: #000000;
    }
    
    #quote-actions {
        background: #34495e;
        border-top-color: #4a5f7a;
    }
}

/* Loading animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

#quote-loading {
    animation: pulse 1.5s infinite;
}

/* Smooth scrolling for Quote items */
.quote-answer {
    transition: max-height 0.3s ease-in-out;
}

/* Custom scrollbar for Quote content */
#quote-content::-webkit-scrollbar {
    width: 8px;
}

#quote-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#quote-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

#quote-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Draggable popup styles */
.dragging-popup {
    user-select: none;
    cursor: move;
}

#quote-header {
    cursor: move;
}

#quote-header:active {
    cursor: grabbing;
}

/* Custom guide selector styles */
#guide-mode-selector {
    font-family: inherit;
    transition: all 0.2s ease;
}

#guide-mode-selector:focus {
    outline: none;
    border-color: #3498db !important;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

#guide-mode-selector:hover {
    border-color: #5a6c7d;
}

/* Custom guide container styles */
#custom-guide-container {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 300px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* Dropped Quote Styles */
.bozai-dropped-quote {
    position: relative;
    border-radius: 0 8px 8px 0;
}

.bozai-dropped-quote blockquote {
    margin: 0;
    font-style: italic;
    line-height: 1.6;
}

.bozai-delete-dropped-quote {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.bozai-delete-dropped-quote:hover {
    background: #d32f2f;
    transform: scale(1.1);
}
/* Delete button for dropped quotes on page */
.bozai-quote-delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

body.quote-popup-open .bozai-dropped-quote:hover .bozai-quote-delete-btn {
    opacity: 1;
    pointer-events: auto;
}

.bozai-quote-delete-btn:hover {
    background: #d32f2f;
    transform: scale(1.15);
}
