/**
 * StoryMint Templates CSS - ENHANCED VERSION
 * 
 * Template-specific styles for single stories, archives, and special pages
 * Modern, eye-catching design for marketplace standards
 * 
 * @package StoryMint
 * @version 3.0.0
 */

/* ========================================================================
   SINGLE STORY TEMPLATE STYLES
   ======================================================================== */

.single-story-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--sm-space-xl);
}

.story-header {
    background: var(--sm-gradient-primary);
    color: var(--sm-white);
    padding: var(--sm-space-2xl);
    border-radius: var(--sm-radius-xl);
    margin-bottom: var(--sm-space-xl);
    position: relative;
    overflow: hidden;
}

.story-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    opacity: 0.2;
}

.story-title-display {
    font-family: var(--sm-font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0 0 var(--sm-space-lg);
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.story-meta-display {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sm-space-lg);
    font-size: var(--sm-text-lg);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.story-author-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: opacity var(--sm-transition-fast);
}

.story-author-link:hover {
    opacity: 0.8;
}

.story-rating-display {
    display: flex;
    align-items: center;
    gap: var(--sm-space-sm);
}

.story-rating-stars {
    display: flex;
    gap: 2px;
}

.story-rating-stars .star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.story-content-wrapper {
    background: var(--sm-white);
    border-radius: var(--sm-radius-xl);
    box-shadow: var(--sm-shadow-xl);
    overflow: hidden;
    margin-bottom: var(--sm-space-xl);
}

.story-content {
    padding: var(--sm-space-2xl);
    font-size: var(--sm-text-lg);
    line-height: 1.8;
    color: var(--sm-gray-800);
    font-family: Georgia, 'Times New Roman', serif;
}

.story-content p {
    margin-bottom: var(--sm-space-lg);
}

.story-content h2,
.story-content h3 {
    font-family: var(--sm-font-heading);
    color: var(--sm-gray-900);
    margin: var(--sm-space-xl) 0 var(--sm-space-lg);
}

.story-content h2 {
    font-size: var(--sm-text-2xl);
    border-bottom: 2px solid var(--sm-primary);
    padding-bottom: var(--sm-space-sm);
}

.story-content h3 {
    font-size: var(--sm-text-xl);
}

.story-content blockquote {
    border-left: 4px solid var(--sm-primary);
    padding-left: var(--sm-space-lg);
    margin: var(--sm-space-xl) 0;
    font-style: italic;
    background: var(--sm-gray-50);
    padding: var(--sm-space-lg);
    border-radius: 0 var(--sm-radius-lg) var(--sm-radius-lg) 0;
}

/* Story Navigation */
.story-navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--sm-space-lg);
    margin: var(--sm-space-xl) 0;
}

.story-nav-item {
    flex: 1;
    max-width: 300px;
}

.story-nav-link {
    display: block;
    background: var(--sm-white);
    border: 2px solid var(--sm-gray-200);
    border-radius: var(--sm-radius-lg);
    padding: var(--sm-space-lg);
    text-decoration: none;
    color: var(--sm-gray-800);
    transition: all var(--sm-transition-fast);
}

.story-nav-link:hover {
    border-color: var(--sm-primary);
    box-shadow: var(--sm-shadow-lg);
    transform: translateY(-2px);
}

.story-nav-direction {
    font-size: var(--sm-text-sm);
    color: var(--sm-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: var(--sm-space-xs);
}

.story-nav-title {
    font-weight: 600;
    font-family: var(--sm-font-heading);
}

/* Story Sidebar */
.story-sidebar {
    background: var(--sm-white);
    border-radius: var(--sm-radius-xl);
    box-shadow: var(--sm-shadow-lg);
    padding: var(--sm-space-xl);
    position: sticky;
    top: var(--sm-space-xl);
}

.story-sidebar-section {
    margin-bottom: var(--sm-space-xl);
    padding-bottom: var(--sm-space-xl);
    border-bottom: 1px solid var(--sm-gray-200);
}

.story-sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.story-sidebar-title {
    font-family: var(--sm-font-heading);
    font-size: var(--sm-text-lg);
    font-weight: 600;
    color: var(--sm-gray-900);
    margin-bottom: var(--sm-space-lg);
}

/* Story Tags */
.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sm-space-sm);
}

.story-tag {
    background: var(--sm-gray-100);
    color: var(--sm-gray-700);
    padding: var(--sm-space-xs) var(--sm-space-md);
    border-radius: var(--sm-radius-full);
    font-size: var(--sm-text-sm);
    text-decoration: none;
    transition: all var(--sm-transition-fast);
    border: 1px solid var(--sm-gray-200);
}

.story-tag:hover {
    background: var(--sm-primary);
    color: var(--sm-white);
    border-color: var(--sm-primary);
}

/* ========================================================================
   ARCHIVE TEMPLATE STYLES
   ======================================================================== */

.stories-archive-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--sm-space-xl);
}

.archive-header {
    background: var(--sm-gradient-hero);
    color: var(--sm-white);
    padding: var(--sm-space-2xl);
    border-radius: var(--sm-radius-xl);
    margin-bottom: var(--sm-space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,250.7C1248,256,1344,288,1392,304L1440,320L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.archive-title {
    font-family: var(--sm-font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 var(--sm-space-lg);
    position: relative;
    z-index: 2;
}

.archive-description {
    font-size: var(--sm-text-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Archive Filters */
.archive-filters {
    background: var(--sm-white);
    padding: var(--sm-space-xl);
    border-radius: var(--sm-radius-xl);
    box-shadow: var(--sm-shadow-lg);
    margin-bottom: var(--sm-space-xl);
    display: flex;
    flex-wrap: wrap;
    gap: var(--sm-space-lg);
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--sm-space-sm);
}

.filter-label {
    font-weight: 600;
    color: var(--sm-gray-700);
    font-size: var(--sm-text-sm);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.filter-select {
    min-width: 150px;
    padding: 0.75rem;
    border: 2px solid var(--sm-gray-200);
    border-radius: var(--sm-radius-lg);
    background: var(--sm-white);
    transition: all var(--sm-transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--sm-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.archive-view-toggle {
    display: flex;
    background: var(--sm-gray-100);
    border-radius: var(--sm-radius-lg);
    padding: 4px;
    margin-left: auto;
}

.view-toggle-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    border-radius: var(--sm-radius-md);
    cursor: pointer;
    transition: all var(--sm-transition-fast);
    color: var(--sm-gray-600);
}

.view-toggle-btn.active {
    background: var(--sm-white);
    color: var(--sm-primary);
    box-shadow: var(--sm-shadow-sm);
}

/* Archive Grid Layouts */
.stories-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--sm-space-xl);
}

.stories-list-view {
    display: flex;
    flex-direction: column;
    gap: var(--sm-space-lg);
}

.story-list-item {
    background: var(--sm-white);
    border-radius: var(--sm-radius-lg);
    box-shadow: var(--sm-shadow-md);
    padding: var(--sm-space-xl);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--sm-space-lg);
    align-items: center;
    transition: all var(--sm-transition-fast);
}

.story-list-item:hover {
    box-shadow: var(--sm-shadow-xl);
    transform: translateY(-2px);
}

.story-list-meta {
    display: flex;
    flex-direction: column;
    gap: var(--sm-space-sm);
}

.story-list-title {
    font-family: var(--sm-font-heading);
    font-size: var(--sm-text-xl);
    font-weight: 600;
    color: var(--sm-gray-900);
    margin: 0;
}

.story-list-author {
    color: var(--sm-primary);
    text-decoration: none;
    font-weight: 500;
}

.story-list-stats {
    display: flex;
    gap: var(--sm-space-lg);
    font-size: var(--sm-text-sm);
    color: var(--sm-gray-500);
}

/* ========================================================================
   DASHBOARD TEMPLATE STYLES
   ======================================================================== */

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--sm-space-xl);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--sm-space-xl);
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: var(--sm-space-xl);
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--sm-space-lg);
}

.dashboard-widget {
    background: var(--sm-white);
    border-radius: var(--sm-radius-xl);
    box-shadow: var(--sm-shadow-lg);
    overflow: hidden;
}

.dashboard-widget-header {
    padding: var(--sm-space-xl);
    background: var(--sm-gradient-primary);
    color: var(--sm-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-widget-title {
    font-family: var(--sm-font-heading);
    font-size: var(--sm-text-xl);
    font-weight: 600;
    margin: 0;
}

.dashboard-widget-content {
    padding: var(--sm-space-xl);
}

/* Quick Actions Widget */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sm-space-lg);
}

.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--sm-space-lg);
    border: 2px solid var(--sm-gray-200);
    border-radius: var(--sm-radius-lg);
    text-decoration: none;
    color: var(--sm-gray-700);
    transition: all var(--sm-transition-fast);
    background: var(--sm-gray-50);
}

.quick-action-item:hover {
    border-color: var(--sm-primary);
    background: var(--sm-primary);
    color: var(--sm-white);
    transform: translateY(-4px);
    box-shadow: var(--sm-shadow-lg);
}

.quick-action-icon {
    font-size: 2rem;
    margin-bottom: var(--sm-space-md);
}

.quick-action-title {
    font-weight: 600;
    margin-bottom: var(--sm-space-xs);
}

.quick-action-desc {
    font-size: var(--sm-text-sm);
    opacity: 0.8;
}

/* Recent Stories Widget */
.recent-stories-list {
    display: flex;
    flex-direction: column;
    gap: var(--sm-space-lg);
}

.recent-story-item {
    display: flex;
    gap: var(--sm-space-md);
    padding: var(--sm-space-md);
    border-radius: var(--sm-radius-lg);
    transition: background var(--sm-transition-fast);
}

.recent-story-item:hover {
    background: var(--sm-gray-50);
}

.recent-story-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--sm-radius-md);
    background: var(--sm-gradient-secondary);
    flex-shrink: 0;
    overflow: hidden;
}

.recent-story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-story-info {
    flex: 1;
    min-width: 0;
}

.recent-story-title {
    font-weight: 600;
    color: var(--sm-gray-900);
    margin-bottom: var(--sm-space-xs);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.recent-story-meta {
    font-size: var(--sm-text-sm);
    color: var(--sm-gray-500);
    display: flex;
    gap: var(--sm-space-md);
}

/* ========================================================================
   SUBMIT TEMPLATE STYLES
   ======================================================================== */

.submit-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--sm-space-xl);
}

.submit-form-wrapper {
    background: var(--sm-white);
    border-radius: var(--sm-radius-xl);
    box-shadow: var(--sm-shadow-xl);
    overflow: hidden;
}

.submit-form-header {
    background: var(--sm-gradient-primary);
    color: var(--sm-white);
    padding: var(--sm-space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.submit-form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.submit-form-title {
    font-family: var(--sm-font-heading);
    font-size: var(--sm-text-3xl);
    font-weight: 700;
    margin: 0 0 var(--sm-space-md);
    position: relative;
    z-index: 2;
}

.submit-form-subtitle {
    font-size: var(--sm-text-lg);
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 2;
}

.submit-form-content {
    padding: var(--sm-space-2xl);
}

.submit-form-section {
    margin-bottom: var(--sm-space-2xl);
    padding-bottom: var(--sm-space-xl);
    border-bottom: 1px solid var(--sm-gray-200);
}

.submit-form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.submit-section-title {
    font-family: var(--sm-font-heading);
    font-size: var(--sm-text-xl);
    font-weight: 600;
    color: var(--sm-gray-900);
    margin-bottom: var(--sm-space-lg);
    display: flex;
    align-items: center;
    gap: var(--sm-space-sm);
}

.submit-section-icon {
    width: 24px;
    height: 24px;
    color: var(--sm-primary);
}

/* Enhanced Form Styles for Submit Page */
.submit-form-group {
    margin-bottom: var(--sm-space-xl);
}

.submit-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sm-space-lg);
}

.submit-form-row.single-column {
    grid-template-columns: 1fr;
}

.submit-textarea-wrapper {
    position: relative;
}

.submit-textarea {
    min-height: 300px;
    resize: vertical;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: var(--sm-text-lg);
    line-height: 1.6;
}

.submit-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sm-space-lg);
    background: var(--sm-gray-50);
    border-top: 1px solid var(--sm-gray-200);
}

.submit-actions {
    display: flex;
    gap: var(--sm-space-md);
}

.submit-preview-btn {
    background: var(--sm-white);
    color: var(--sm-gray-700);
    border: 2px solid var(--sm-gray-300);
}

.submit-save-draft-btn {
    background: var(--sm-gray-600);
    color: var(--sm-white);
}

.submit-publish-btn {
    background: var(--sm-gradient-primary);
    color: var(--sm-white);
    position: relative;
    overflow: hidden;
}

.submit-publish-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.submit-publish-btn:hover::before {
    left: 100%;
}

/* Upload Area */
.submit-upload-area {
    border: 2px dashed var(--sm-gray-300);
    border-radius: var(--sm-radius-lg);
    padding: var(--sm-space-2xl);
    text-align: center;
    transition: all var(--sm-transition-fast);
    cursor: pointer;
    background: var(--sm-gray-50);
}

.submit-upload-area:hover,
.submit-upload-area.dragover {
    border-color: var(--sm-primary);
    background: rgba(99, 102, 241, 0.05);
}

.submit-upload-icon {
    font-size: 3rem;
    color: var(--sm-gray-400);
    margin-bottom: var(--sm-space-md);
}

.submit-upload-text {
    color: var(--sm-gray-600);
    margin-bottom: var(--sm-space-sm);
}

.submit-upload-hint {
    font-size: var(--sm-text-sm);
    color: var(--sm-gray-500);
}

/* ========================================================================
   ENHANCED RESPONSIVE DESIGN FOR TEMPLATES
   ======================================================================== */

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        order: -1;
    }
    
    .archive-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .archive-view-toggle {
        margin-left: 0;
        align-self: center;
    }
    
    .story-navigation {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .single-story-container,
    .stories-archive-container,
    .dashboard-container,
    .submit-container {
        padding: var(--sm-space-lg);
    }
    
    .story-header,
    .archive-header,
    .submit-form-header {
        padding: var(--sm-space-xl);
    }
    
    .story-title-display,
    .archive-title,
    .submit-form-title {
        font-size: var(--sm-text-2xl);
    }
    
    .story-meta-display {
        flex-direction: column;
        gap: var(--sm-space-md);
    }
    
    .stories-grid-view {
        grid-template-columns: 1fr;
    }
    
    .submit-form-row {
        grid-template-columns: 1fr;
    }
    
    .submit-toolbar {
        flex-direction: column;
        gap: var(--sm-space-md);
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .story-list-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .story-content-wrapper,
    .submit-form-wrapper,
    .dashboard-widget {
        border-radius: var(--sm-radius-lg);
    }
    
    .story-content,
    .submit-form-content,
    .dashboard-widget-content {
        padding: var(--sm-space-lg);
    }
    
    .story-sidebar {
        position: static;
        margin-top: var(--sm-space-xl);
    }
}

/* ========================================================================
   ENHANCED READING EXPERIENCE
   ======================================================================== */

.reading-mode .story-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: var(--sm-text-xl);
    line-height: 1.8;
}

.reading-mode .story-sidebar {
    position: fixed;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    transition: right var(--sm-transition-normal);
    z-index: var(--sm-z-fixed);
}

.reading-mode .story-sidebar.open {
    right: var(--sm-space-lg);
}

.reading-mode-toggle {
    position: fixed;
    bottom: var(--sm-space-xl);
    right: var(--sm-space-xl);
    background: var(--sm-primary);
    color: var(--sm-white);
    border: none;
    border-radius: var(--sm-radius-full);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sm-shadow-xl);
    cursor: pointer;
    transition: all var(--sm-transition-fast);
    z-index: var(--sm-z-fixed);
}

.reading-mode-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--sm-shadow-2xl);
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(99, 102, 241, 0.2);
    z-index: var(--sm-z-fixed);
}

.reading-progress-bar {
    height: 100%;
    background: var(--sm-gradient-primary);
    width: 0%;
    transition: width 0.1s ease;
}

/* ========================================================================
   ENHANCED PRINT STYLES FOR TEMPLATES
   ======================================================================== */

@media print {
    .story-header,
    .archive-header,
    .submit-form-header,
    .dashboard-widget-header {
        background: white !important;
        color: black !important;
        border-bottom: 2px solid #ccc !important;
    }
    
    .story-sidebar,
    .dashboard-sidebar,
    .archive-filters,
    .submit-toolbar,
    .reading-mode-toggle,
    .reading-progress {
        display: none !important;
    }
    
    .single-story-container,
    .dashboard-grid {
        grid-template-columns: 1fr !important;
    }
    
    .story-content {
        font-size: 12pt !important;
        line-height: 1.5 !important;
    }
    
    .story-navigation {
        display: none !important;
    }
}

/* ========================================================================
   ENHANCED ACCESSIBILITY FOR TEMPLATES
   ======================================================================== */

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--sm-primary);
    color: var(--sm-white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--sm-radius-md);
    z-index: var(--sm-z-tooltip);
}

.skip-to-content:focus {
    top: 6px;
}

.story-content:focus,
.dashboard-widget:focus {
    outline: 2px solid var(--sm-primary);
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators for interactive elements */
.quick-action-item:focus,
.story-nav-link:focus,
.story-tag:focus,
.recent-story-item:focus {
    outline: 2px solid var(--sm-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .story-header,
    .archive-header,
    .submit-form-header,
    .dashboard-widget-header {
        background: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #ffffff !important;
    }
    
    .story-content,
    .dashboard-widget-content,
    .submit-form-content {
        border: 2px solid #000000 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .quick-action-item:hover,
    .story-nav-link:hover,
    .story-list-item:hover,
    .recent-story-item:hover {
        transform: none !important;
    }
    
    .reading-progress-bar {
        transition: none !important;
    }
    
    .submit-publish-btn::before {
        display: none !important;
    }
}

/* ========================================================================
   END OF TEMPLATE STYLES
   ======================================================================== */
   