/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Modern Red/White Color Scheme */
:root {
    --primary-color: #e53e3e;  /* Bold red */
    --primary-dark: #c53030;   /* Darker red for hover states */
    --secondary-color: #f8f9fa; /* Light gray background */
    --accent-color: #2d3748;   /* Dark gray for text */
    --text-color: #2d3748;     /* Dark gray for text */
    --text-light: #718096;     /* Muted gray for secondary text */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --card-bg: #ffffff;        /* Pure white for card backgrounds */
    --border-color: #dee2e6;
    --success-color: #28a745;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Bar */
.main-nav {
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Uniform Button Style - CRITICAL FOR CONSISTENCY */
.btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    min-width: 120px;
    height: 44px;
    line-height: 1;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Input Fields and Dropdowns for Consistency */
.input-field, select {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 1rem;
    height: 44px;
}

/* PDF Hero Section */
.pdf-hero {
    text-align: center;
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.pdf-hero h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: 1.2em;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 62, 62, 0.4);
}

.tools-section {
    margin-bottom: 2rem;
}

.tools-section h2 {
    text-align: center;
    color: var(--accent-color);
    font-size: 2em;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Compact Tools Grid Layout */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Individual Card Styling - Compact and White Background */
.tool-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.tool-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2em;
    font-weight: 600;
}

.tool-card p {
    color: var(--text-light);
    font-size: 0.9em;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.tool-card .btn {
    margin-top: auto;
    align-self: center;
    min-width: 140px;
}

.tool-card .btn {
    align-self: center;
    margin-top: auto;
}

/* Legacy converter-grid and converter-card for homepage */
.converter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.converter-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    box-shadow: var(--shadow);
}

.converter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.converter-card h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3em;
}

.converter-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9em;
    flex-grow: 1;
}

/* Updated converter-link to use btn styling */
.converter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    min-width: 120px;
    height: 44px;
    margin-top: auto;
}

.converter-link:hover {
    background: var(--primary-dark);
    color: white;
}

/* Header and subtitle */
.subtitle {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

/* Navigation styles */
.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* Converter tool styles */
.converter-info {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    box-shadow: var(--shadow);
}

.rate-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    color: #856404;
}

.status-message {
    background: #d1ecf1;
    border: 1px solid #b3d7db;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    color: #0c5460;
    font-size: 0.95em;
}

.status-message.error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.status-message.success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.converter-tool {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.conversion-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
    flex: 1;
}

.input-group input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    transition: border-color 0.2s ease;
    height: 44px;
}

.input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.input-group select {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    height: 44px;
}

.equals-sign {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 1rem;
    flex-shrink: 0;
}

.common-conversions {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.common-conversions h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.common-conversions ul {
    list-style-type: none;
    padding: 0;
}

.common-conversions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-family: monospace;
    font-size: 0.95em;
}

.common-conversions li:last-child {
    border-bottom: none;
}

/* Footer styles */
footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

#visitor-counter {
    font-weight: bold;
    color: var(--primary-color);
}

/* Percentage calculator tabs */
.percentage-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.2s ease;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.calculation-group {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.calculation-group label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.calculation-group input,
.calculation-group select {
    padding: 0.5rem;
    margin: 0 0.25rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1em;
    width: 80px;
    height: 36px;
}

.result {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    border: 2px solid var(--success-color);
}

/* Binary toggle for storage converter */
.binary-toggle {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
    box-shadow: var(--shadow);
}

.binary-toggle label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.binary-toggle input[type="checkbox"] {
    transform: scale(1.2);
}

/* Data converter styles */
.data-converter {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.conversion-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.data-conversion-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.data-input-group,
.data-output-group {
    display: flex;
    flex-direction: column;
}

.data-input-group label,
.data-output-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.data-input-group textarea,
.data-output-group textarea {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    resize: vertical;
    min-height: 300px;
}

.data-input-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.data-output-group textarea {
    background: var(--secondary-color);
}

.conversion-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Updated convert-button and clear-button to use btn class */
.convert-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 120px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.convert-button:hover {
    background: var(--primary-dark);
}

.clear-button {
    background: var(--text-light);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 120px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.clear-button:hover {
    background: #545b62;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

/* Tools page - using same structure as homepage */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tool-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.tool-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tool-card p {
    color: var(--text-light);
    font-size: 0.9em;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.tool-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.tool-card a:hover {
    background: var(--primary-dark);
    text-decoration: none;
}

/* Currency display toggle */
.currency-display-toggle {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}

.currency-display-toggle label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
}

.currency-display-toggle input[type="radio"] {
    transform: scale(1.2);
    accent-color: var(--primary-color);
}

.currency-display-toggle label:has(input:checked) {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .conversion-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .equals-sign {
        margin: 0;
        transform: rotate(90deg);
    }
    
    .input-group {
        width: 100%;
        max-width: 300px;
    }
    
    .converter-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .data-conversion-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .percentage-tabs {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
    }
    
    .conversion-buttons {
        flex-direction: column;
    }
    
    .currency-display-toggle {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .converter-tool,
    .data-converter {
        padding: 1rem;
    }
    
    .converter-info,
    .common-conversions {
        padding: 1rem;
    }
    
    .converter-card,
    .tool-card {
        padding: 1rem;
    }
    
    .data-input-group textarea,
    .data-output-group textarea {
        min-height: 200px;
        font-size: 0.8em;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .converter-card,
    .tool-card,
    .converter-link,
    .input-group input,
    .btn {
        transition: none;
    }
    
    .converter-card:hover,
    .tool-card:hover {
        transform: none;
    }
}

/* PDF Converter Styles */
.pdf-converter-tool {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.drop-zone {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.drop-zone:hover,
.drop-zone.drag-over {
    border-color: var(--primary-color);
    background: rgba(229, 62, 62, 0.05);
}

.drop-zone.file-selected {
    border-color: var(--success-color);
    background: rgba(40, 167, 69, 0.05);
}

.drop-zone-content {
    pointer-events: none;
}

.upload-icon {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.drop-zone h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.3em;
}

.or-text {
    color: var(--text-light);
    margin: 1rem 0;
    font-size: 1em;
}

.select-file-btn {
    pointer-events: auto;
}

.file-limits {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9em;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(113, 128, 150, 0.1);
    border-radius: 6px;
}

.conversion-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.option-group {
    display: flex;
    flex-direction: column;
}

.option-group label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.convert-action {
    text-align: center;
    margin-bottom: 2rem;
}

.convert-pdf-btn {
    font-size: 1.2em;
    padding: 1rem 2.5rem;
    min-width: 200px;
}

.convert-pdf-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

.conversion-status {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    width: 0%;
}

.file-info {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.file-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.file-details p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.file-details strong {
    color: var(--accent-color);
}

/* Responsive adjustments for PDF converter */
@media (max-width: 768px) {
    .pdf-converter-tool {
        padding: 1rem;
    }
    
    .conversion-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .drop-zone {
        padding: 2rem 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .converter-card,
    .tool-card {
        border-width: 2px;
    }
    
    .input-group input,
    .input-group select,
    .input-field {
        border-width: 2px;
    }
    
    .btn {
        border: 2px solid var(--primary-color);
    }
}

/* New Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 2rem 3rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 0;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(229, 62, 62, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(229, 62, 62, 0.4);
}

.secondary-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.secondary-link:hover {
    color: var(--primary-color);
    background: rgba(229, 62, 62, 0.1);
}

/* Trust Bar Styles */
.trust-bar {
    background: #f1f3f4;
    padding: 1rem 2rem;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-top: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trust-text {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design for New Hero */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        margin-right: 0;
        margin-bottom: 1rem;
        display: block;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .secondary-link {
        font-size: 1rem;
        display: block;
        margin-top: 1rem;
    }
    
    .trust-bar {
        padding: 0.8rem 1rem;
    }
    
    .trust-text {
        font-size: 0.9rem;
    }
}

/* Social Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    justify-content: center;
}

.share-buttons p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.share-btn i {
    font-size: 16px;
}

/* Footer share buttons styling */
footer .share-buttons {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Results section share buttons */
.results-share {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

@media (max-width: 768px) {
    .share-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .share-btn {
        width: 32px;
        height: 32px;
    }
    
    .share-btn i {
        font-size: 14px;
    }
}