 /* Notepad specific styling */
 
 .notepad-container {
     display: flex;
     flex-direction: column;
     height: 100%;
     margin-bottom: 30px;
 }
 
 .editor-toolbar {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     padding: 12px;
     background-color: var(--card-bg);
     border-radius: 8px 8px 0 0;
     border: 1px solid var(--card-border);
     border-bottom: none;
 }
 
 .toolbar-group {
     display: flex;
     gap: 8px;
     padding-right: 12px;
     border-right: 1px solid var(--card-border);
 }
 
 .toolbar-group:last-child {
     border-right: none;
     padding-right: 0;
 }
 
 .toolbar-btn {
     background: none;
     border: none;
     color: var(--text-secondary);
     cursor: pointer;
     width: 36px;
     height: 36px;
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s;
 }
 
 .toolbar-btn:hover {
     background-color: rgba(67, 97, 238, 0.1);
     color: var(--primary-color);
 }
 
 .toolbar-btn.active {
     background-color: var(--primary-color);
     color: white;
 }
 
 .toolbar-btn i {
     pointer-events: none;
 }
 
 .editor-content {
     flex: 1;
     min-height: 500px;
     padding: 20px;
     background-color: var(--card-bg);
     border: 1px solid var(--card-border);
     border-radius: 0 0 8px 8px;
     outline: none;
     line-height: 1.6;
     overflow-y: auto;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
 }
 
 .editor-content:focus {
     border-color: var(--primary-color);
 }
 
 .editor-stats {
     display: flex;
     justify-content: space-between;
     margin-top: 15px;
     font-size: 0.9rem;
     color: var(--text-tertiary);
 }
 
 .editor-actions {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }
 
 .editor-action-btn {
     flex: 1;
     padding: 12px;
     border-radius: 6px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }
 
 .editor-action-btn i {
     font-size: 0.9rem;
 }
 
 .clear-btn {
     background-color: rgba(255, 51, 51, 0.1);
     color: var(--error-color);
     border: 1px solid var(--error-color);
 }
 
 .clear-btn:hover {
     background-color: rgba(255, 51, 51, 0.2);
 }
 
 .download-btn {
     background-color: var(--primary-color);
     color: white;
     border: none;
 }
 
 .download-btn:hover {
     background-color: var(--primary-dark);
 }
 
 .save-btn {
     background-color: var(--success-color);
     color: white;
     border: none;
 }
 
 .save-btn:hover {
     background-color: var(--success-dark);
 }
 /* Formatting styles */
 
 .editor-content h1,
 .editor-content h2,
 .editor-content h3,
 .editor-content h4,
 .editor-content h5,
 .editor-content h6 {
     margin-top: 1.5em;
     margin-bottom: 0.5em;
     color: var(--text-primary);
 }
 
 .editor-content h1 {
     font-size: 2em;
 }
 
 .editor-content h2 {
     font-size: 1.5em;
 }
 
 .editor-content h3 {
     font-size: 1.17em;
 }
 
 .editor-content h4 {
     font-size: 1em;
 }
 
 .editor-content h5 {
     font-size: 0.83em;
 }
 
 .editor-content h6 {
     font-size: 0.67em;
 }
 
 .editor-content p {
     margin-bottom: 1em;
 }
 
 .editor-content ul,
 .editor-content ol {
     margin-bottom: 1em;
     padding-left: 2em;
 }
 
 .editor-content blockquote {
     border-left: 3px solid var(--primary-color);
     padding-left: 15px;
     margin-left: 0;
     margin-bottom: 1em;
     color: var(--text-secondary);
 }
 
 .editor-content pre {
     background-color: rgba(0, 0, 0, 0.05);
     padding: 15px;
     border-radius: 6px;
     overflow-x: auto;
     margin-bottom: 1em;
     font-family: 'Fira Code', monospace;
     font-size: 0.9em;
 }
 
 .editor-content code {
     font-family: 'Fira Code', monospace;
     background-color: rgba(0, 0, 0, 0.05);
     padding: 2px 4px;
     border-radius: 3px;
     font-size: 0.9em;
 }
 /* Dark mode toggle */
 
 .theme-toggle {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-left: auto;
 }
 
 .theme-toggle-btn {
     background: none;
     border: none;
     color: var(--text-secondary);
     cursor: pointer;
     padding: 8px;
     border-radius: 6px;
     transition: all 0.3s;
 }
 
 .theme-toggle-btn:hover {
     background-color: rgba(67, 97, 238, 0.1);
     color: var(--primary-color);
 }
 /* Modern notice */
 
 .modern-notice {
     background-color: rgba(26, 188, 156, 0.1);
     border-left: 3px solid #1abc9c;
     padding: 10px;
     margin: 15px 0;
     border-radius: 0 4px 4px 0;
 }
 /* Blog section styling */
 
 .blog-section {
     margin-top: 40px;
     padding: 30px;
     background-color: var(--card-bg);
     border-radius: 10px;
     border: 1px solid var(--card-border);
 }
 
 .blog-section h2 {
     color: var(--primary-color);
     margin-bottom: 20px;
 }
 
 .blog-article {
     margin-bottom: 20px;
     padding-bottom: 20px;
     border-bottom: 1px solid var(--card-border);
 }
 
 .blog-article:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }
 
 .blog-article h3 {
     margin-bottom: 10px;
 }
 
 .blog-article a {
     color: var(--footer-link);
     text-decoration: none;
     transition: color 0.3s;
 }
 
 .blog-article a:hover {
     color: var(--accent-color);
     text-decoration: underline;
 }
 /* SEO optimized content styling */
 
 .seo-content h2 {
     color: var(--primary-color);
     margin-top: 2rem;
 }
 
 .seo-content ul,
 .seo-content ol {
     margin-left: 1.5rem;
     line-height: 1.6;
 }
 
 .seo-content li {
     margin-bottom: 0.5rem;
 }
 /* Related Tools Section */
 
 .related-tools-section {
     margin: 40px 0;
     padding: 30px;
     background-color: var(--card-bg);
     border-radius: 10px;
     border: 1px solid var(--card-border);
 }
 
 .related-tools-section h2 {
     color: var(--primary-color);
     margin-bottom: 25px;
     text-align: center;
     position: relative;
     padding-bottom: 15px;
 }
 
 .related-tools-section h2::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background-color: var(--accent-color);
 }
 
 .tools-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 25px;
     margin-top: 20px;
 }
 
 .tool-card {
     background-color: var(--tool-card-bg);
     border-radius: 12px;
     padding: 25px;
     transition: all 0.3s ease;
     border: 1px solid var(--card-border);
     display: flex;
     flex-direction: column;
     align-items: flex-start;
 }
 
 .tool-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     border-color: var(--accent-color);
 }
 
 .tool-icon-container {
     width: 50px;
     height: 50px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 15px;
     font-size: 1.5rem;
     color: white;
 }
 
 .tool-card h3 {
     color: var(--primary-color);
     margin-bottom: 12px;
     font-size: 1.2rem;
     font-weight: 600;
 }
 
 .tool-card p {
     color: var(--text-color);
     font-size: 0.95rem;
     margin-bottom: 20px;
     line-height: 1.5;
 }
 
 .tool-card a {
     display: inline-flex;
     align-items: center;
     background-color: var(--accent-color);
     color: white;
     padding: 10px 18px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s;
     margin-top: auto;
 }
 
 .tool-card a:hover {
     background-color: var(--accent-hover);
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }
 
 .tool-card a i {
     margin-left: 8px;
     font-size: 0.9rem;
     transition: transform 0.3s;
 }
 
 .tool-card a:hover i {
     transform: translateX(3px);
 }
 /* Go to Top Button */
 
 .go-to-top {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background-color: var(--accent-color);
     color: white;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     transition: all 0.3s;
     z-index: 99;
     opacity: 0;
     visibility: hidden;
 }
 
 .go-to-top.visible {
     opacity: 1;
     visibility: visible;
 }
 
 .go-to-top:hover {
     background-color: var(--accent-hover);
     transform: translateY(-3px);
 }
 
 .go-to-top i {
     font-size: 1.2rem;
 }
 /* Responsive adjustments */
 
 @media (max-width: 768px) {
     .editor-toolbar {
         gap: 4px;
         padding: 8px;
     }
     .toolbar-group {
         padding-right: 8px;
     }
     .toolbar-btn {
         width: 32px;
         height: 32px;
         font-size: 0.9rem;
     }
     .editor-content {
         min-height: 300px;
         padding: 15px;
     }
     .editor-actions {
         flex-direction: column;
     }
 }