/* Meta Tag Generator Tool Styles - Clean & Fixed */

/* Reset & Base Styles */
.meta-tag-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Single Line Breadcrumb */
.breadcrumb-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 12px 0;
    margin-bottom: 0;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    font-size: 0.8rem;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
}

.breadcrumb-icon {
    font-size: 0.9rem;
}

/* Tool Header - Clean & Simple */
.tool-header-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    padding: 50px 0 40px;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.meta-tag-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tool-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.tool-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tool-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0 0 25px 0;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Simple Badges - No Animations */
.tool-badges {
    display: flex;
    gap: 12px;
    margin: 25px 0 25px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.badge-free {
    background: rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.4);
    color: #bbf7d0;
}

.badge-secure {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.4);
    color: #bfdbfe;
}

.badge-pro {
    background: rgba(168, 85, 247, 0.25);
    border-color: rgba(168, 85, 247, 0.4);
    color: #e9d5ff;
}

/* Hero CTA Message */
.hero-cta {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-message {
    margin: 0;
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
    line-height: 1.5;
}

/* Animated Arrow in Hero */
.hero-arrow {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.arrow-down {
    font-size: 2.5rem;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Main Container */
.meta-tag-container {
    background: #f8fafc;
    padding: 30px 0 50px;
    min-height: 100vh;
}

/* Layout */
.tool-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.main-content-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Card Sections */
.card-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.section-icon {
    font-size: 1.8rem;
    color: white;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Form Styles - Clean Inputs (No Icons) */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.label-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-counter {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #6b7280;
}

.label-counter.good {
    background: #d1fae5;
    color: #059669;
}

.label-counter.warning {
    background: #fef3c7;
    color: #d97706;
}

.label-counter.error {
    background: #fee2e2;
    color: #dc2626;
}

/* Clean Input Containers - No Icons */
.input-container {
    position: relative;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 20px; /* Equal padding on all sides */
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #1f2937;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.form-hint {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 6px;
    line-height: 1.4;
    padding-left: 2px;
}

/* Privacy Assurance */
.privacy-assurance {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f0f9ff;
    border-radius: 12px;
    border: 1px solid #bae6fd;
    margin: 25px 0;
}

.privacy-icon {
    font-size: 1.5rem;
    color: #0ea5e9;
    flex-shrink: 0;
}

.privacy-content strong {
    color: #0369a1;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.privacy-content p {
    color: #0c4a6e;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn-lg {
    padding: 16px 30px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.btn-outline {
    background: transparent;
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
}

.btn-outline:hover {
    background: #8B5CF6;
    color: white;
}

.secondary-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Output Section */
.tag-tabs-container {
    margin-bottom: 25px;
}

.tag-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    background: #f8fafc;
    padding: 8px;
    border-radius: 12px;
}

.tag-tab {
    flex: 1;
    min-width: 140px;
    padding: 12px 15px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tag-tab:hover {
    background: white;
    color: #8B5CF6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tag-tab.active {
    background: white;
    color: #8B5CF6;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2);
}

.tag-content {
    margin-top: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
}

.code-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.code-actions {
    display: flex;
    gap: 10px;
}

.btn-copy-code,
.btn-download {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.code-block {
    background: #1f2937;
    color: #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
    margin: 0;
    border: 1px solid #374151;
}

.code-block code {
    font-family: inherit;
    color: inherit;
    background: transparent;
}

/* Quick Actions */
.quick-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;
}

.action-group h4 {
    color: #374151;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.action-buttons-small {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #8B5CF6;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon span {
    font-size: 1.8rem;
    color: white;
}

.feature-title {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* How-to Section */
.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #8B5CF6, #7C3AED);
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.step-number span {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section - All Closed by Default */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: white;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-text {
    flex: 1;
    text-align: left;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #8B5CF6;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-question.active + .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px;
    transition: max-height 0.5s ease;
}

.faq-answer p,
.faq-answer ul {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.faq-answer ul {
    padding-left: 20px;
    margin-top: 10px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Related Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
    border-color: #8B5CF6;
}

.tool-card-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    padding: 25px;
    position: relative;
}

.tool-icon {
    font-size: 2.5rem;
    color: white;
    display: block;
}

.tool-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    color: #8B5CF6;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tool-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tool-title {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 600;
}

.tool-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tool-features .feature {
    background: #f3f4f6;
    color: #4b5563;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.tool-link:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.widget-icon {
    font-size: 1.5rem;
    color: #8B5CF6;
}

.widget-title {
    font-size: 1.2rem;
    color: #1f2937;
    margin: 0;
    font-weight: 600;
}

/* Tips Widget */
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tip-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Popular Tools Widget */
.popular-tools {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popular-tool {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.popular-tool:hover {
    background: white;
    border-color: #8B5CF6;
    transform: translateX(5px);
}

.tool-rank {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.tool-info {
    flex: 1;
}

.tool-name {
    display: block;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.tool-category {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 2px;
}

.tool-arrow {
    color: #8B5CF6;
    font-size: 1.2rem;
}

/* Ad Containers */
.ad-container {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin: 30px 0;
}

.ad-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.ad-horizontal {
    margin: 20px 0;
}

.ad-in-content {
    margin: 40px auto;
    max-width: 300px;
}

.ad-bottom {
    margin-top: 40px;
}

.sidebar-ad-unit {
    margin: 0 auto;
}

.sticky-ad {
    position: sticky;
    top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tool-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-area {
        order: 2;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .main-content-area {
        order: 1;
    }
    
    .sticky-ad {
        position: static;
    }
}

@media (max-width: 768px) {
    .tool-header-section {
        padding: 40px 0 30px;
    }
    
    .tool-main-title {
        font-size: 2.2rem;
    }
    
    .tool-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .tool-badges {
        gap: 10px;
        margin: 25px 0 20px 0;
    }
    
    .badge {
        padding: 8px 18px;
        font-size: 0.95rem;
    }
    
    .hero-cta {
        padding: 12px 16px;
        margin-top: 15px;
    }
    
    .cta-message {
        font-size: 1rem;
    }
    
    .arrow-down {
        font-size: 2rem;
    }
    
    .card-section {
        padding: 25px 20px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 13px 18px;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline::before {
        left: 25px;
    }
    
    .step-item {
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
    }
    
    .step-number span {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tool-header-section {
        padding: 30px 0 25px;
    }
    
    .tool-main-title {
        font-size: 1.8rem;
    }
    
    .tool-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .tool-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 10px 15px;
    }
    
    .hero-cta {
        padding: 10px 14px;
    }
    
    .cta-message {
        font-size: 0.95rem;
    }
    
    .arrow-down {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .tag-tab {
        min-width: 120px;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 14px 25px;
    }
    
    .action-buttons-small {
        flex-direction: column;
    }
    
    .secondary-buttons {
        flex-direction: column;
    }
    
    .breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .breadcrumb-item {
        flex-shrink: 0;
    }
}

/* Print Styles */
@media print {
    .ad-container,
    .sidebar-area,
    .secondary-buttons,
    .action-buttons-small,
    .tag-tabs,
    .hero-cta,
    .tool-badges,
    .hero-arrow {
        display: none !important;
    }
    
    .meta-tag-container {
        background: white;
        padding: 0;
    }
    
    .card-section {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .tool-header-section {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
    }
    
    .tool-main-title,
    .tool-subtitle {
        color: black !important;
    }
    
    .code-block {
        background: #f5f5f5 !important;
        color: black !important;
        border: 1px solid #ddd !important;
    }
}