/* Manual Post Text Styles */
.manual-post-text {
    background: #fff3cd !important;
    color: #856404 !important;
    border: 1px solid #ffeaa7 !important;
    max-width: none;
}

.manual-post-header {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.manual-post-content {
    background: var(--bg-accent);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    font-family: monospace;
    white-space: pre-wrap;
    word-break: break-word;
    margin: var(--spacing-sm) 0;
    border: 1px solid var(--medium-gray);
    overflow-y: auto;
}

/* Advanced Micro-Interactions */

/* Smooth Page Transitions */
* {
    scroll-behavior: smooth;
}

/* Loading States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--medium-gray);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success State Animations */
.success-checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--success-color);
    position: relative;
    animation: checkmark-pop 0.3s ease-out;
}

.success-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}
