/* PDF Converter Plugin Styles */
.pdf-converter-container {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    max-width: 100%;
    margin: 0 auto;
}

.pdf-converter-header {
    text-align: center;
    margin-bottom: 20px;
}

.pdf-converter-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.pdf-converter-header p {
    color: #64748b;
    font-size: 16px;
}

.drop-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drop-zone:hover, .drop-zone.active {
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.05);
}

.drop-zone-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: #3b82f6;
}

.drop-zone-title {
    font-size: 18px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 4px;
}

.drop-zone-text {
    font-size: 14px;
    color: #64748b;
}

.pdf-converter-button {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 16px;
}

.pdf-converter-button:hover {
    background-color: #2563eb;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background-color: #f1f5f9;
    border-radius: 8px;
    margin-bottom: 10px;
    animation: fadeIn 0.5s;
}

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

.file-thumbnail {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.file-info {
    flex-grow: 1;
}

.file-name {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

.file-size {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.file-remove {
    color: #64748b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.file-remove:hover {
    color: #ef4444;
}

.pdf-options {
    margin-top: 24px;
    padding: 16px;
    background-color: #f1f5f9;
    border-radius: 8px;
}

.pdf-options h4 {
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    margin-top: 0;
    margin-bottom: 12px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .options-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.option-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 4px;
}

.option-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: white;
    font-size: 14px;
    color: #1e293b;
}

.progress-container {
    margin-top: 24px;
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #3b82f6;
    border-radius: 999px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    margin-top: 8px;
}

.success-message {
    display: flex;
    align-items: flex-start;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
}

.success-icon {
    color: #10b981;
    margin-right: 12px;
    flex-shrink: 0;
}

.success-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: #064e3b;
    margin-top: 0;
    margin-bottom: 4px;
}

.success-content p {
    font-size: 14px;
    color: #047857;
    margin-top: 0;
    margin-bottom: 12px;
}

.download-button {
    background-color: #10b981;
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.download-button:hover {
    background-color: #059669;
}

.shortcode-info {
    margin-top: 32px;
    padding: 24px;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.shortcode-box {
    font-family: monospace;
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 12px;
    margin: 10px 0;
    overflow-x: auto;
}

.parameter-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 4px;
}

.parameter-list li {
    margin-bottom: 4px;
}

.parameter-list strong {
    font-weight: 600;
}