.jpg-to-png-converter {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.admin-shortcode-info {
    background: #f0f0f0;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #5c9ead;
}

.converter-container {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.converter-description {
    margin-bottom: 20px;
}

.converter-options {
    margin-bottom: 30px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.option-group {
    margin-bottom: 15px;
}

.option-group label {
    display: inline-block;
    min-width: 150px;
    font-weight: 500;
}

.option-group select {
    min-width: 200px;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.converter-steps {
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #5c9ead;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
}

.upload-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

/* Make buttons look good on frontend */
.jpg-to-png-converter .button {
    display: inline-block;
    padding: 8px 16px;
    background: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    color: #555;
}

.jpg-to-png-converter .button-primary {
    background: #5c9ead;
    border-color: #4a8999;
    color: #fff;
}

.jpg-to-png-converter .button:hover {
    background: #fafafa;
}

.jpg-to-png-converter .button-primary:hover {
    background: #4a8999;
}

.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 50px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.drop-zone.drag-over {
    border-color: #5c9ead;
    background-color: rgba(92, 158, 173, 0.05);
}

.batch-progress {
    margin-bottom: 20px;
}

.progress-bar-container {
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-bar {
    height: 100%;
    background-color: #5c9ead;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.file-progress {
    height: 5px;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
}

.file-progress-bar {
    height: 100%;
    background-color: #5c9ead;
    width: 0%;
}

.converted-files-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.converted-files-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.converted-files-list li:last-child {
    border-bottom: none;
}

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

.file-format {
    margin: 0 10px;
    color: #666;
    font-size: 12px;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
}

.download-link {
    margin-left: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .option-group {
        display: flex;
        flex-direction: column;
    }
    
    .option-group label {
        margin-bottom: 5px;
    }
    
    .option-group select {
        width: 100%;
    }
    
    .upload-buttons {
        flex-direction: column;
    }
    
    .upload-buttons .button {
        width: 100%;
        margin-bottom: 10px;
    }
}