/* Base Styles */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --success-color: #00b894;
    --danger-color: #d63031;
    --warning-color: #fdcb6e;
    --light-gray: #f8f9fa;
    --dark-gray: #2d3436;
    --border-radius: 10px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f6fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin-bottom: 1.25rem;
    color: #555;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #5649e0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
}

.btn i {
    font-size: 1.1em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    background-color: #5649e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.btn-text {
    background: none;
    color: var(--primary-color);
    padding: 6px 12px;
    font-weight: 500;
}

.btn-text:hover {
    background-color: rgba(108, 92, 231, 0.1);
    transform: none;
    box-shadow: none;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-color), #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--dark-gray);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

/* Main Content */
.main-content {
    padding: 2rem 0 4rem;
}

.converter-section {
    margin-bottom: 4rem;
}

.converter-section h1 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    color: var(--dark-gray);
    background: linear-gradient(135deg, var(--primary-color), #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Converter Box */
.converter-box {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.upload-area {
    text-align: center;
    padding: 3rem 2rem;
    border: 2px dashed #e0e0e0;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    background-color: #fafafa;
}

.upload-area:hover, #dropZone.dragover .upload-area {
    border-color: var(--primary-color);
    background-color: rgba(108, 92, 231, 0.03);
}

.upload-area i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.upload-area h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-size: 1.5rem;
}

.upload-area p {
    margin: 1rem 0 1.5rem;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Preview Section */
.preview-container {
    margin-top: 1.5rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.preview-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--dark-gray);
}

.preview-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    border: 1px solid #f0f0f0;
    border-radius: var(--border-radius);
    padding: 0.5rem;
}

.preview-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.preview-item:last-child {
    margin-bottom: 0;
}

.preview-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.preview-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 1rem;
    background-color: #f8f9fa;
    padding: 4px;
    border: 1px solid #eee;
}

.preview-info {
    flex: 1;
    min-width: 0;
    margin-right: 1rem;
}

.preview-info h4 {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--dark-gray);
}

.preview-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #777;
    flex-wrap: wrap;
}

.preview-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.remove-btn {
    color: var(--danger-color);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.5rem;
    opacity: 0.7;
    transition: var(--transition);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(214, 48, 49, 0.1);
}

.remove-btn:hover {
    opacity: 1;
    background-color: rgba(214, 48, 49, 0.15);
    transform: rotate(90deg);
}

/* Conversion Options */
.conversion-options {
    background: #f9f9ff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border: 1px dashed #e0e0ff;
}

.option {
    margin-bottom: 1.5rem;
}

.option:last-child {
    margin-bottom: 0;
}

.option label {
    display: block;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Format Options */
.format-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.format-option {
    flex: 1;
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.format-option:hover {
    border-color: var(--secondary-color);
}

.format-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.format-option input[type="radio"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.format-option input[type="radio"]:checked {
    border-color: var(--primary-color);
}

.format-option input[type="radio"]:checked ~ .format-option {
    border-color: var(--primary-color);
    background-color: rgba(108, 92, 231, 0.05);
}

/* Range Input */
input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
    margin: 0.75rem 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(108, 92, 231, 0.3);
    transition: var(--transition);
    border: 3px solid white;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Color Picker */
.color-picker {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.color-picker input[type="color"] {
    width: 50px;
    height: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}

.color-picker input[type="color"]:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.color-picker span {
    font-family: 'Courier New', monospace;
    background: #f5f5f5;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 1px solid #e0e0e0;
}

/* Checkbox */
.option input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: relative;
    top: 2px;
}

.option label[for] {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #555;
}

/* Convert Button */
.btn-convert {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-convert:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.btn-convert:hover:after {
    transform: translateX(100%);
}

.btn-convert i {
    animation: spin 1.5s linear infinite;
    display: none;
    font-size: 1.2em;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Download Section */
.download-section {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.75rem;
    margin-top: 2rem;
    animation: slideUp 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.download-section h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--dark-gray);
    font-size: 1.4rem;
}

.download-list {
    margin-bottom: 1.75rem;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #f9f9ff;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid #f0f0ff;
    transition: var(--transition);
}

.download-item:last-child {
    margin-bottom: 0;
}

.download-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.download-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.download-info i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.download-info-content {
    min-width: 0;
}

.download-info span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.download-filename {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.download-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #777;
}

.download-btn {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.25);
}

.download-btn:hover {
    background: #00a884;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 184, 148, 0.35);
}

.download-btn i {
    font-size: 1.1em;
}

#downloadAllBtn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* Browser Support */
.browser-support {
    margin-top: 3rem;
    text-align: center;
}

.browser-support h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-size: 1.25rem;
}

.browser-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.browser {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.browser i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(108, 92, 231, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.browser span {
    font-weight: 500;
    color: #555;
}

/* Info Section */
.info-section {
    background: white;
    padding: 4rem 0;
    margin-top: 2rem;
}

.info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.info-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.info-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    background: #f9f9ff;
    transition: var(--transition);
    border: 1px solid #f0f0ff;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    background: rgba(108, 92, 231, 0.1);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature h4 {
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-size: 1.25rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
    color: var(--dark-gray);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #f0f0f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    background: #f9f9ff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f0f0ff;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--dark-gray);
    font-weight: 600;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 1.5rem;
    display: none;
    background: white;
    line-height: 1.7;
    color: #555;
    animation: fadeIn 0.3s ease;
    border-top: 1px solid #f5f5f5;
}

.faq-answer p {
    margin: 1.25rem 0;
    text-align: left;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section p {
    color: #b3b9c5;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #b3b9c5;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-section a:before {
    content: '→';
    margin-right: 0.5rem;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    position: absolute;
    left: -20px;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-section a:hover:before {
    opacity: 1;
    left: -15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a3c;
    color: #8a8f9a;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Loading State */
.loading .btn-convert i {
    display: inline-block;
}

.loading .btn-convert span {
    display: none;
}

/* Messages */
.message {
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideDown 0.3s ease-out;
    border: 1px solid transparent;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-message {
    background: #e8f8f0;
    color: #0a5c36;
    border-color: #b8f0d1;
}

.error-message {
    background: #fde8e8;
    color: #9b1c1c;
    border-color: #f5c6cb;
}

.message i {
    font-size: 1.25rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 2rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .converter-section h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .converter-box {
        padding: 1.5rem;
    }
    
    .preview-item {
        flex-direction: column;
        text-align: center;
    }
    
    .preview-info {
        text-align: center;
        margin: 1rem 0 0;
    }
    
    .preview-meta {
        justify-content: center;
    }
    
    .download-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .download-info {
        flex-direction: column;
        text-align: center;
    }
    
    .download-meta {
        justify-content: center;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .format-options {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .format-option {
        padding: 0.75rem;
    }
    
    .browser-icons {
        gap: 1.5rem;
    }
    
    .browser i {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .converter-section {
        margin-bottom: 2rem;
    }
    
    .converter-section h1 {
        font-size: 1.75rem;
    }
    
    .upload-area {
        padding: 2rem 1rem;
    }
    
    .upload-area h3 {
        font-size: 1.25rem;
    }
    
    .conversion-options {
        padding: 1.25rem;
    }
    
    .btn-convert {
        font-size: 1rem;
        padding: 0.9rem;
    }
    
    .info-section {
        padding: 3rem 0;
    }
    
    .info-section h2 {
        font-size: 1.75rem;
    }
    
    .faq h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3:after,
    .footer-section h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section a:before {
        display: none;
    }
    
    .footer-section a:hover {
        transform: none;
        padding-left: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .conversion-options,
    .btn,
    .mobile-menu-btn {
        display: none !important;
    }
    
    body {
        padding: 0;
        background: white;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .download-section {
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
    }
    
    .download-item {
        page-break-inside: avoid;
        border: 1px solid #eee;
        margin-bottom: 1rem;
    }
}
